Wrong note identified for string A fret 6
Type
Functional
Severity
S4 - Minor
Status
active
Regression
No
Workaround
No
Project
Seagull_Merlin_Dad_CheckNotes_v2.qml code:
if(note.pitch == 67){return("X");} //G not available
if(note.pitch == 68){return("6");} //G#
Correction edit for Seagull_Merlin_Dad_CheckNotes_v2.qml
The G note should have the 6 and the G# should have the X:
if(note.pitch == 67){return("6");} //G
if(note.pitch == 68){return("X");} //G# not available
Comments
I see what you mean. There is no G# in the key of D, so the results are reversed.
This need to be active since the code has not been fixed.
As a proposed fix is provided...
Not a PR and "patch (code needs review)" is gone