GUI: rename Absolute to Fixed

see issue #55
This commit is contained in:
tildearrow 2022-01-23 17:02:09 -05:00
parent beeb074975
commit c5282df819
1 changed files with 2 additions and 2 deletions

View File

@ -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");
}