From: Toni Wilen Date: Sat, 11 Feb 2023 09:02:20 +0000 (+0200) Subject: Fix A600 quickstart RTC selection. X-Git-Tag: 5.0.0~149 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=a002e7d4cb3e13cb5104a0d1ee7c37d7367db8a8;p=francis%2Fwinuae.git Fix A600 quickstart RTC selection. --- diff --git a/cfgfile.cpp b/cfgfile.cpp index 97f77ae9..a651e04a 100644 --- a/cfgfile.cpp +++ b/cfgfile.cpp @@ -9086,7 +9086,6 @@ static int bip_a600 (struct uae_prefs *p, int config, int compa, int romcheck) roms[3] = -1; set_68000_compa (p, compa); p->cs_compatible = CP_A600; - built_in_chipset_prefs (p); p->bogomem.size = 0; p->chipmem.size = 0x100000; if (config > 0) @@ -9096,6 +9095,7 @@ static int bip_a600 (struct uae_prefs *p, int config, int compa, int romcheck) if (config == 2) p->fastmem[0].size = 0x400000; p->chipset_mask = CSMASK_ECS_AGNUS | CSMASK_ECS_DENISE; + built_in_chipset_prefs(p); return configure_rom (p, roms, romcheck); } @@ -9107,7 +9107,6 @@ static int bip_a500p (struct uae_prefs *p, int config, int compa, int romcheck) roms[1] = -1; set_68000_compa (p, compa); p->cs_compatible = CP_A500P; - built_in_chipset_prefs (p); p->bogomem.size = 0; p->chipmem.size = 0x100000; if (config > 0) @@ -9117,6 +9116,7 @@ static int bip_a500p (struct uae_prefs *p, int config, int compa, int romcheck) if (config == 2) p->fastmem[0].size = 0x400000; p->chipset_mask = CSMASK_ECS_AGNUS | CSMASK_ECS_DENISE; + built_in_chipset_prefs(p); return configure_rom (p, roms, romcheck); } static int bip_a500 (struct uae_prefs *p, int config, int compa, int romcheck)