mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
GUI: fix relative/fixed toggle label being wrong
This commit is contained in:
parent
afa59a27ff
commit
a4ff0c3876
1 changed files with 2 additions and 2 deletions
|
@ -1082,7 +1082,7 @@ void FurnaceGUI::drawGBEnv(unsigned char vol, unsigned char len, unsigned char s
|
|||
} \
|
||||
if (macroMode) { \
|
||||
bool modeVal=macro.mode; \
|
||||
if (ImGui::Checkbox("Relative##IMacroMode_" macroName,&modeVal)) { \
|
||||
if (ImGui::Checkbox("Fixed##IMacroMode_" macroName,&modeVal)) { \
|
||||
macro.mode=modeVal; \
|
||||
} \
|
||||
} \
|
||||
|
@ -1176,7 +1176,7 @@ void FurnaceGUI::drawGBEnv(unsigned char vol, unsigned char len, unsigned char s
|
|||
} \
|
||||
if (macroMode) { \
|
||||
bool modeVal=macro.mode; \
|
||||
if (ImGui::Checkbox("Relative##IOPMacroMode_" macroName,&modeVal)) { \
|
||||
if (ImGui::Checkbox("Fixed##IOPMacroMode_" macroName,&modeVal)) { \
|
||||
macro.mode=modeVal; \
|
||||
} \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue