Remove some unnecessary reporting.

This commit is contained in:
Henrik Rydgård
2020-08-06 10:20:27 +02:00
parent f9a1a0eee5
commit 8e1caadb48
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -761,8 +761,8 @@ void ImportFuncSymbol(const FuncSymbolImport &func, bool reimporting, const char
void ExportFuncSymbol(const FuncSymbolExport &func) {
if (FuncImportIsSyscall(func.moduleName, func.nid)) {
// Oops, HLE covers this.
WARN_LOG_REPORT(LOADER, "Ignoring func export %s/%08x, already implemented in HLE.", func.moduleName, func.nid);
// HLE covers this already - let's ignore the function.
WARN_LOG(LOADER, "Ignoring func export %s/%08x, already implemented in HLE.", func.moduleName, func.nid);
return;
}