mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
CPU/CodeCache: Drop block linking warning to dev level
This commit is contained in:
parent
ab1143dd0c
commit
c9f8828448
|
@ -851,7 +851,7 @@ void InvalidateBlocksWithPageIndex(u32 page_index)
|
||||||
const u32 frame_diff = frame_number - block->invalidate_frame_number;
|
const u32 frame_diff = frame_number - block->invalidate_frame_number;
|
||||||
if (frame_diff <= INVALIDATE_THRESHOLD_TO_DISABLE_LINKING)
|
if (frame_diff <= INVALIDATE_THRESHOLD_TO_DISABLE_LINKING)
|
||||||
{
|
{
|
||||||
Log_PerfPrintf("Block 0x%08X has been invalidated in %u frames, disabling linking", block->GetPC(), frame_diff);
|
Log_DevPrintf("Block 0x%08X has been invalidated in %u frames, disabling linking", block->GetPC(), frame_diff);
|
||||||
block->can_link = false;
|
block->can_link = false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue