Hidden Ext Midi mode and play indicator for non-internal clocks

This commit is contained in:
2023-12-13 23:41:44 +02:00
parent b7827b87a4
commit 4bc5067dfc
2 changed files with 4 additions and 4 deletions

View File

@ -267,9 +267,9 @@ void updateScreen() {
}
}
if (!isPlaying) {
if (masterClockMode == 0 && !isPlaying) {
u8g2.drawUTF8(121, yPos, "t");
} else {
} else if (masterClockMode == 0 && isPlaying) {
u8g2.drawUTF8(122, yPos, "r");
}
}