From 53f81d067a862269be7594393b5f56d4bed58d90 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 20 Nov 2020 01:02:42 +1000 Subject: [PATCH] CPU/CodeCache: Remove warning about executing uncompiled blocks --- src/core/cpu_code_cache.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/cpu_code_cache.cpp b/src/core/cpu_code_cache.cpp index 463331230..611bd18a8 100644 --- a/src/core/cpu_code_cache.cpp +++ b/src/core/cpu_code_cache.cpp @@ -178,7 +178,6 @@ static void ExecuteImpl() CodeBlock* block = LookupBlock(next_block_key); if (!block) { - Log_WarningPrintf("Falling back to uncached interpreter at 0x%08X", g_state.regs.pc); InterpretUncachedBlock(); continue; }