From 9fb4b38cff2a672a7e6a95bfb4b1622b9afff251 Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Thu, 23 Jan 2025 12:47:05 +0100 Subject: [PATCH] bugfix: the default_prefs used ECS chipset settings (#1607) The default_prefs used the ECS chipset option, instead of OCS which is the default in Quickstart. This caused a difference in behavior, when loading something from the GUI vs when loading it from the command line, without opening the GUI. This is also apparent in WinUAE. Changing this here to OCS, until we hear back from Toni, in case there is some reason for the difference. --- src/cfgfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cfgfile.cpp b/src/cfgfile.cpp index 37a30f95..df913b6c 100644 --- a/src/cfgfile.cpp +++ b/src/cfgfile.cpp @@ -8717,7 +8717,7 @@ void default_prefs (struct uae_prefs *p, bool reset, int type) p->cpu_cycle_exact = false; p->cpu_memory_cycle_exact = false; p->blitter_cycle_exact = false; - p->chipset_mask = CSMASK_ECS_AGNUS; + p->chipset_mask = 0; p->chipset_hr = false; p->genlock = false; p->genlock_image = 0;