mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
- Renamed ARM9 to ARMv7.
- Improved ELF32 loader.
This commit is contained in:
parent
6b22e7d90a
commit
b263c3ebaf
22 changed files with 149 additions and 144 deletions
|
@ -59,7 +59,7 @@ bool ELF32Loader::LoadEhdrInfo()
|
|||
return false;
|
||||
}
|
||||
|
||||
entry = ehdr.GetEntry();
|
||||
entry = ehdr.GetEntry() & ~0x3;
|
||||
if(entry == 0)
|
||||
{
|
||||
ConLog.Error("elf32 error: entry is null!");
|
||||
|
@ -100,6 +100,7 @@ bool ELF32Loader::LoadPhdrInfo()
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue