Skip to content

Commit

Permalink
Don't use invalid vala syntax (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
ricotz committed Jul 22, 2020
1 parent 84db11b commit 9ed3bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/GStreamer/Equalizer.vala
Expand Up @@ -31,7 +31,7 @@ public class Music.Equalizer : GLib.Object {
construct {
element = Gst.ElementFactory.make ("equalizer-10bands", "equalizer");

int[10] freqs = {60, 170, 310, 600, 1000, 3000, 6000, 12000, 14000, 16000};
int[] freqs = {60, 170, 310, 600, 1000, 3000, 6000, 12000, 14000, 16000};

float last_freq = 0;
for (int index = 0; index < 10; index++) {
Expand Down

0 comments on commit 9ed3bbb

Please sign in to comment.