Skip to content

Commit

Permalink
Fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Feb 26, 2017
1 parent 2ade15a commit 9fbe745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ class receiveMidiApplication : public JUCEApplicationBase, public MidiInputCall
String first = value.substring(0, 1);
if (first.containsOnly("CDEFGABH") && value.substring(value.length()-1).containsOnly("1234567890"))
{
int note;
int note = 0;
switch (first[0])
{
case 'C': note = 0; break;
Expand Down

0 comments on commit 9fbe745

Please sign in to comment.