mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-27 18:30:56 +00:00
Keep unknown syscall reporting the same.
Oops.
This commit is contained in:
parent
da0c9a86e5
commit
a05c78f8fc
@ -177,7 +177,6 @@ u32 GetSyscallOp(const char *moduleName, u32 nib)
|
||||
else
|
||||
{
|
||||
INFO_LOG(HLE, "Syscall (%s, %08x) unknown", moduleName, nib);
|
||||
Reporting::ReportMessage("Unknown syscall in known module: %s 0x%08x", moduleName, nib);
|
||||
return (0x0003FFCC | (modindex<<18)); // invalid syscall
|
||||
}
|
||||
}
|
||||
|
@ -599,7 +599,7 @@ void ImportFuncSymbol(const FuncSymbolImport &func) {
|
||||
|
||||
// It hasn't been exported yet, but hopefully it will later.
|
||||
if (GetModuleIndex(func.moduleName) != -1) {
|
||||
WARN_LOG_REPORT(LOADER, "Unknown syscall (%s,%08x) imported", func.moduleName, func.nid);
|
||||
WARN_LOG_REPORT(LOADER, "Unknown syscall in known module: %s 0x%08x", func.moduleName, func.nid);
|
||||
} else {
|
||||
INFO_LOG(LOADER, "Function (%s,%08x) unresolved, storing for later resolving", func.moduleName, func.nid);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user