From 8e9b88ef99f34fb0fc5566762597f60c1a05be10 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Thu, 25 Apr 2024 17:06:14 -0500 Subject: [PATCH] AY: add missing 1.99MHz clock rate --- src/gui/sysConf.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/sysConf.cpp b/src/gui/sysConf.cpp index 94c963662..852eae20a 100644 --- a/src/gui/sysConf.cpp +++ b/src/gui/sysConf.cpp @@ -886,6 +886,10 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl clockSel=2; altered=true; } + if (ImGui::RadioButton("1.99MHz (PC-88)",clockSel==15)) { + clockSel=15; + altered=true; + } if (ImGui::RadioButton("2MHz (Atari ST/Sharp X1)",clockSel==3)) { clockSel=3; altered=true;