flat note names

This commit is contained in:
Eknous-P 2023-07-22 20:44:02 +04:00
parent d0404c9e10
commit 093df41ef9
5 changed files with 51 additions and 0 deletions

View file

@ -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];
}