From fa9e50d7c12aac2f410fba46d2d54b5eb512939e Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 5 Dec 2021 00:02:08 +1000 Subject: [PATCH] HostInterface: Don't disable fastmem for runahead --- src/core/host_interface.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index 9da0ae5b7..85b3df758 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -689,14 +689,6 @@ void HostInterface::FixIncompatibleSettings(bool display_osd_messages) g_settings.rewind_enable = false; } #endif - - // rewinding causes issues with mmap fastmem, so just use LUT - if ((g_settings.rewind_enable || g_settings.IsRunaheadEnabled()) && g_settings.IsUsingFastmem() && - g_settings.cpu_fastmem_mode == CPUFastmemMode::MMap) - { - Log_WarningPrintf("Disabling mmap fastmem due to rewind being enabled"); - g_settings.cpu_fastmem_mode = CPUFastmemMode::LUT; - } } void HostInterface::SaveSettings(SettingsInterface& si)