mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-01-30 10:05:11 +00:00
Cut down on some logspam.
This commit is contained in:
parent
a1f59deafe
commit
88780fe1dd
@ -489,7 +489,7 @@ const HLEFunction *GetSyscallFuncPointer(MIPSOpcode op)
|
||||
ERROR_LOG(HLE, "Syscall had bad function number %d in module %d - probably executing garbage", funcnum, modulenum);
|
||||
return NULL;
|
||||
}
|
||||
INFO_LOG(HLE, "Compiling syscall to %s", moduleDB[modulenum].funcTable[funcnum].name);
|
||||
DEBUG_LOG(HLE, "Compiling syscall to %s", moduleDB[modulenum].funcTable[funcnum].name);
|
||||
return &moduleDB[modulenum].funcTable[funcnum];
|
||||
}
|
||||
|
||||
|
@ -157,7 +157,7 @@ static bool Memory_TryBase(u32 flags) {
|
||||
position, view.size, base + view.virtual_address);
|
||||
if (!*view.out_ptr) {
|
||||
goto bail;
|
||||
ERROR_LOG(MEMMAP, "Failed at view %d", i);
|
||||
DEBUG_LOG(MEMMAP, "Failed at view %d", i);
|
||||
}
|
||||
#else
|
||||
if (CanIgnoreView(view)) {
|
||||
@ -167,7 +167,7 @@ static bool Memory_TryBase(u32 flags) {
|
||||
*view.out_ptr = (u8*)g_arena.CreateView(
|
||||
position, view.size, base + (view.virtual_address & MEMVIEW32_MASK));
|
||||
if (!*view.out_ptr) {
|
||||
ERROR_LOG(MEMMAP, "Failed at view %d", i);
|
||||
DEBUG_LOG(MEMMAP, "Failed at view %d", i);
|
||||
goto bail;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user