flat note names
This commit is contained in:
parent
d0404c9e10
commit
093df41ef9
5 changed files with 51 additions and 0 deletions
|
|
@ -98,6 +98,10 @@ const char* FurnaceGUI::noteName(short note, short octave) {
|
|||
if (seek<0 || seek>=180) {
|
||||
return "???";
|
||||
}
|
||||
if (settings.flatNotes){
|
||||
if (settings.germanNotation) return noteNamesGF[seek];
|
||||
return noteNamesF[seek];
|
||||
}
|
||||
if (settings.germanNotation) return noteNamesG[seek];
|
||||
return noteNames[seek];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue