From bb4a7af1dbdf0ba5175905e01a2ac884119570c5 Mon Sep 17 00:00:00 2001 From: Eknous-P Date: Sat, 25 Oct 2025 12:48:47 +0400 Subject: [PATCH] fix chanOsc note text being 5 octaves down --- src/gui/chanOsc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/chanOsc.cpp b/src/gui/chanOsc.cpp index 252b82502..898094e18 100644 --- a/src/gui/chanOsc.cpp +++ b/src/gui/chanOsc.cpp @@ -903,7 +903,7 @@ void FurnaceGUI::drawChanOsc() { DivChannelState* chanState=e->getChanState(ch); if (chanState==NULL || !(chanState->keyOn)) break; // no more conversion necessary after the note/octave unification :> - text+=fmt::sprintf("%s",noteName(chanState->note)); + text+=fmt::sprintf("%s",noteName(chanState->note+60)); break; } case 'l': {