Keep unknown syscall reporting the same.

Oops.
This commit is contained in:
Unknown W. Brackets 2013-09-01 00:46:48 -07:00
parent da0c9a86e5
commit a05c78f8fc
2 changed files with 1 additions and 2 deletions

View File

@ -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
}
}

View File

@ -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);
}