Clean up among the logs. Remove MASTER_LOG.

This commit is contained in:
Henrik Rydgård
2017-03-06 13:10:23 +01:00
parent cfe2621604
commit 440e72d250
36 changed files with 181 additions and 179 deletions
+1 -1
View File
@@ -794,7 +794,7 @@ void Module::Cleanup() {
}
if (memoryBlockAddr != 0 && nm.text_addr != 0 && memoryBlockSize >= nm.data_size + nm.bss_size + nm.text_size) {
DEBUG_LOG(HLE, "Zeroing out module %s memory: %08x - %08x", nm.name, memoryBlockAddr, memoryBlockAddr + memoryBlockSize);
DEBUG_LOG(LOADER, "Zeroing out module %s memory: %08x - %08x", nm.name, memoryBlockAddr, memoryBlockAddr + memoryBlockSize);
for (u32 i = 0; i < (u32)(nm.text_size + 3); i += 4) {
Memory::Write_U32(MIPS_MAKE_BREAK(1), nm.text_addr + i);
}