fix clipboard pasting bug

NOT ANOTHER OF THESE!
This commit is contained in:
tildearrow 2022-01-19 21:53:21 -05:00
parent fee174a65a
commit abea8e5dce
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ bool FurnaceGUI::decodeNote(const char* what, short& note, short& octave) {
octave=0;
return true;
}
for (int i=0; i<120; i++) {
for (int i=0; i<180; i++) {
if (strcmp(what,noteNames[i])==0) {
if ((i%12)==0) {
note=12;