From e3e171f97c7ec6c3eb95463bfe9ec55f2deff754 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Wed, 16 Aug 2017 10:35:29 +0300 Subject: [PATCH] Fix data cache uae boot rom mode check. --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.")); } -- 2.47.3