From: Toni Wilen Date: Wed, 16 Aug 2017 07:35:29 +0000 (+0300) Subject: Fix data cache uae boot rom mode check. X-Git-Tag: 3600~117 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=e3e171f97c7ec6c3eb95463bfe9ec55f2deff754;p=francis%2Fwinuae.git Fix data cache uae boot rom mode check. --- diff --git a/main.cpp b/main.cpp index 5e3325c0..bcf2575d 100644 --- a/main.cpp +++ b/main.cpp @@ -328,7 +328,7 @@ void fixup_cpu (struct uae_prefs *p) p->cpu_data_cache = false; error_log(_T("Data cache emulation requires More compatible, is not JIT compatible, 68030+ only.")); } - if (p->cpu_data_cache && (currprefs.uaeboard != 3 && uae_boot_rom_type > 0)) { + if (p->cpu_data_cache && (p->uaeboard != 3 && need_uae_boot_rom(p))) { p->cpu_data_cache = false; error_log(_T("Data cache emulation requires Indirect UAE Boot ROM.")); }