From: Toni Wilen Date: Sat, 11 Jan 2025 10:12:08 +0000 (+0200) Subject: Fix Agnus revision shown in advanced chipset X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=b6055a0f88c7688de67ea1ec0a57cc41102f759d;p=francis%2Fwinuae.git Fix Agnus revision shown in advanced chipset --- diff --git a/od-win32/win32gui.cpp b/od-win32/win32gui.cpp index 37499dc6..db9892fb 100644 --- a/od-win32/win32gui.cpp +++ b/od-win32/win32gui.cpp @@ -9672,7 +9672,7 @@ static void values_to_chipsetdlg2 (HWND hDlg) if (workprefs.ntscmode) rev |= 0x10; rev |= (workprefs.chipset_mask & CSMASK_AGA) ? 0x23 : 0; - rev |= (currprefs.chipset_mask & CSMASK_ECS_AGNUS) ? 0x20 : 0; + rev |= (workprefs.chipset_mask & CSMASK_ECS_AGNUS) ? 0x20 : 0; _stprintf (txt, _T("%02X"), rev); } SetDlgItemText(hDlg, IDC_CS_AGNUSREV, txt);