From: Toni Wilen Date: Fri, 15 Jul 2022 15:26:27 +0000 (+0300) Subject: Set more compatible when CPU is 68000-030, not just 68000. X-Git-Tag: 41000~196 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=7eb27b3c0211fd98d64d3ee59ee14b2186fb7f40;p=francis%2Fwinuae.git Set more compatible when CPU is 68000-030, not just 68000. --- diff --git a/od-win32/win32gui.cpp b/od-win32/win32gui.cpp index 9ebda0cf..1e26903b 100644 --- a/od-win32/win32gui.cpp +++ b/od-win32/win32gui.cpp @@ -9010,10 +9010,10 @@ static void values_from_chipsetdlg (HWND hDlg, UINT msg, WPARAM wParam, LPARAM l workprefs.cpu_cycle_exact = n1; workprefs.cpu_memory_cycle_exact = workprefs.blitter_cycle_exact = n2; if (n2) { - if (workprefs.cpu_model == 68000) - workprefs.cpu_compatible = 1; - if (workprefs.cpu_model <= 68030) + if (workprefs.cpu_model <= 68030) { workprefs.m68k_speed = 0; + workprefs.cpu_compatible = 1; + } if (workprefs.immediate_blits) { workprefs.immediate_blits = false; CheckDlgButton (hDlg, IDC_BLITIMM, FALSE);