mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-17 03:15:39 +00:00
CPU/CodeCache: Remove warning about executing uncompiled blocks
This commit is contained in:
parent
9c9e2bbe27
commit
53f81d067a
|
@ -178,7 +178,6 @@ static void ExecuteImpl()
|
||||||
CodeBlock* block = LookupBlock(next_block_key);
|
CodeBlock* block = LookupBlock(next_block_key);
|
||||||
if (!block)
|
if (!block)
|
||||||
{
|
{
|
||||||
Log_WarningPrintf("Falling back to uncached interpreter at 0x%08X", g_state.regs.pc);
|
|
||||||
InterpretUncachedBlock();
|
InterpretUncachedBlock();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue