mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-03-02 19:16:56 +00:00
Don't report 0, it seems like it's okay.
This commit is contained in:
parent
02e3315981
commit
90e56db174
@ -605,8 +605,13 @@ Module *__KernelLoadELFFromPtr(const u8 *ptr, u32 loadAddress, std::string *erro
|
||||
|
||||
DEBUG_LOG(LOADER, "Importing Module %s, stubs at %08x", modulename, entry->firstSymAddr);
|
||||
if (entry->size != 5 && entry->size != 6) {
|
||||
WARN_LOG_REPORT(LOADER, "Unexpected module entry size %d", entry->size);
|
||||
needReport = true;
|
||||
if (entry->size != 7) {
|
||||
WARN_LOG_REPORT(LOADER, "Unexpected module entry size %d", entry->size);
|
||||
needReport = true;
|
||||
} else if (entry->extra != 0) {
|
||||
WARN_LOG_REPORT(LOADER, "Unexpected module entry with non-zero 7th value %08x", entry->extra);
|
||||
needReport = true;
|
||||
}
|
||||
}
|
||||
|
||||
// If nidData is 0, only variables are being imported.
|
||||
|
Loading…
x
Reference in New Issue
Block a user