From 84c955058ba6fc89c6d89fb5152e04867ae77c94 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sat, 23 Jul 2022 22:22:05 -0500 Subject: [PATCH] GUI: Z280 whoops issue #576 --- src/gui/sysConf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/sysConf.cpp b/src/gui/sysConf.cpp index 2cb177984..e54074861 100644 --- a/src/gui/sysConf.cpp +++ b/src/gui/sysConf.cpp @@ -594,7 +594,7 @@ void FurnaceGUI::drawSysConf(int chan, DivSystem type, unsigned int& flags, bool if (ImGui::RadioButton("14.32MHz (NTSC)",(flags&255)==1)) { copyOfFlags=(flags&(~255))|1; } - if (ImGui::RadioButton("14.19MHz (PAL)",(flags&255)==3)) { + if (ImGui::RadioButton("14.19MHz (PAL)",(flags&255)==2)) { copyOfFlags=(flags&(~255))|2; } if (ImGui::RadioButton("16MHz",(flags&255)==3)) {