]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Set more compatible when CPU is 68000-030, not just 68000.
authorToni Wilen <twilen@winuae.net>
Fri, 15 Jul 2022 15:26:27 +0000 (18:26 +0300)
committerToni Wilen <twilen@winuae.net>
Fri, 15 Jul 2022 15:26:27 +0000 (18:26 +0300)
od-win32/win32gui.cpp

index 9ebda0cf72c941e214aedba91b2179169f8d2b34..1e26903b0d099a007059db84a71a3e10d493a8de 100644 (file)
@@ -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);