From 7d605c9d765227b9ed679338e78c743de4b09b12 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Wed, 30 Aug 2023 14:27:29 -0500 Subject: [PATCH] GUI: why do I see a 0.5 reference --- src/gui/settings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/settings.cpp b/src/gui/settings.cpp index 8e3178f8..3f3c5aab 100644 --- a/src/gui/settings.cpp +++ b/src/gui/settings.cpp @@ -1231,7 +1231,7 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Arcade/YM2151"); + ImGui::Text("YM2151"); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); ImGui::Combo("##ArcadeCore",&settings.arcadeCore,arcadeCores,2); @@ -1242,7 +1242,7 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Genesis/YM2612"); + ImGui::Text("YM2612"); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); ImGui::Combo("##YM2612Core",&settings.ym2612Core,ym2612Cores,2);