From a2666de7c8d8342254f75e3f00d4ba7749a0b385 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Tue, 1 Dec 2020 13:23:02 +1000 Subject: [PATCH] HostInterface: Make mmap fastmem unavailable a warning instead of OSD message --- src/core/host_interface.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index 94be506ee..c644ccafd 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -553,8 +553,7 @@ void HostInterface::FixIncompatibleSettings(bool display_osd_messages) #ifndef WITH_MMAP_FASTMEM if (g_settings.cpu_fastmem_mode == CPUFastmemMode::MMap) { - AddOSDMessage( - TranslateStdString("OSDMessage", "mmap fastmem is not available on this platform, using LUT instead."), 20.0f); + Log_WarningPrintf("mmap fastmem is not available on this platform, using LUT instead."); g_settings.cpu_fastmem_mode = CPUFastmemMode::LUT; } #endif