Core: remove some accidental added debug code

This commit is contained in:
zilmar 2023-11-16 18:16:35 +10:30
parent ee714e2462
commit 542afc4514
1 changed files with 0 additions and 4 deletions

View File

@ -1048,10 +1048,6 @@ void CMipsMemoryVM::ClearMemoryWriteMap(uint32_t VAddr, uint32_t Length)
uint32_t PAddr = m_TLB_WriteMap[VAddr >> 12] + VAddr;
for (uint32_t i = PAddr, n = (PAddr + (Length & ~0xFFF)) + 0x1000; i < n; i += 0x1000)
{
if ((i + 0x80000000) >> 12 == 0x00080290)
{
__debugbreak();
}
m_MemoryWriteMap[(i + 0x80000000) >> 12] = (size_t)-1;
m_MemoryWriteMap[(i + 0xA0000000) >> 12] = (size_t)-1;
}