From c5282df81930ccb710a488ac492645866e42bacd Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sun, 23 Jan 2022 17:02:09 -0500 Subject: [PATCH] GUI: rename Absolute to Fixed see issue #55 --- src/gui/gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 4133519d5..102409a8f 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -1145,7 +1145,7 @@ void FurnaceGUI::drawInsEdit() { ImGui::Separator(); if (ins->type==DIV_INS_C64 && ins->c64.volIsCutoff) { if (ins->c64.filterIsAbs) { - ImGui::Text("Absolute Cutoff Macro"); + ImGui::Text("Cutoff Macro"); } else { ImGui::Text("Relative Cutoff Macro"); } @@ -1241,7 +1241,7 @@ void FurnaceGUI::drawInsEdit() { ImGui::Separator(); if (ins->type==DIV_INS_C64) { if (ins->c64.dutyIsAbs) { - ImGui::Text("Absolute Duty Macro"); + ImGui::Text("Duty Macro"); } else { ImGui::Text("Relative Duty Macro"); }