mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
Might as well allow imports to blacklisted.
If someone's trying to read their code.
This commit is contained in:
@@ -282,9 +282,6 @@ public:
|
||||
void Cleanup();
|
||||
|
||||
void ImportFunc(const FuncSymbolImport &func) {
|
||||
if (isFake) {
|
||||
return;
|
||||
}
|
||||
if (!Memory::IsValidAddress(func.stubAddr)) {
|
||||
WARN_LOG_REPORT(LOADER, "Invalid address for syscall stub %s %08x", func.moduleName, func.nid);
|
||||
return;
|
||||
@@ -304,9 +301,6 @@ public:
|
||||
}
|
||||
|
||||
void ImportVar(const VarSymbolImport &var) {
|
||||
if (isFake) {
|
||||
return;
|
||||
}
|
||||
// Keep track and actually hook it up if possible.
|
||||
importedVars.push_back(var);
|
||||
impExpModuleNames.insert(var.moduleName);
|
||||
|
||||
Reference in New Issue
Block a user