mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 10:18:40 +12:00
Small changes in memory and RSXIOMem
Some bugs fixed, some other changes.
This commit is contained in:
parent
6b0857dcff
commit
74007d5e5d
13 changed files with 95 additions and 92 deletions
|
@ -455,7 +455,7 @@ bool ELF64Loader::LoadPhdrData(u64 offset)
|
|||
const u32 nid = vm::read32(stub.s_nid + i * 4);
|
||||
const u32 text = vm::read32(stub.s_text + i * 4);
|
||||
|
||||
if (module && !module->Load(nid))
|
||||
if (!module || !module->Load(nid))
|
||||
{
|
||||
LOG_WARNING(LOADER, "Unimplemented function '%s' in '%s' module", SysCalls::GetHLEFuncName(nid).c_str(), module_name.c_str());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue