From: Waccoon Date: Mon, 28 Nov 2022 11:31:40 +0000 (-0500) Subject: Updates "bip_a4000()" to be consistent with "built_in_chipset_prefs()" so VSync TOD... X-Git-Tag: 41000~38^2~1^2 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=535acbb6957496d5b544aee985905ce4c5dd7cd5;p=francis%2Fwinuae.git Updates "bip_a4000()" to be consistent with "built_in_chipset_prefs()" so VSync TOD source is always used for A4000/A4000T. --- diff --git a/cfgfile.cpp b/cfgfile.cpp index c183e54f..9e7c1997 100644 --- a/cfgfile.cpp +++ b/cfgfile.cpp @@ -8697,7 +8697,6 @@ static int bip_a4000 (struct uae_prefs *p, int config, int compa, int romcheck) p->cpu_idle = 150; p->cs_compatible = CP_A4000; built_in_chipset_prefs (p); - p->cs_ciaatod = p->ntscmode ? 2 : 1; return configure_rom (p, roms, romcheck); } static int bip_a4000t (struct uae_prefs *p, int config, int compa, int romcheck) @@ -8731,7 +8730,6 @@ static int bip_a4000t (struct uae_prefs *p, int config, int compa, int romcheck) p->cpu_idle = 150; p->cs_compatible = CP_A4000T; built_in_chipset_prefs (p); - p->cs_ciaatod = p->ntscmode ? 2 : 1; return configure_rom (p, roms, romcheck); }