mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
Fixed ELF64 loader.
Fixed cellPadGetInfo. Fixed cellFsOpen path encoding. Draft implementation of cellAudioGetPortConfig. Implemented STBUX, STHUX, STWUX. Improved Boot (S)ELF / Install PKG UI.
This commit is contained in:
parent
e2de06da63
commit
b500fcbaed
10 changed files with 154 additions and 100 deletions
|
@ -201,7 +201,8 @@ void Emulator::Load()
|
|||
elf_path += "\\" + wxFileName(m_path).GetName() + ".elf";
|
||||
}
|
||||
|
||||
DecryptSelf(elf_path, self_path);
|
||||
if(!DecryptSelf(elf_path, self_path))
|
||||
return;
|
||||
|
||||
m_path = elf_path;
|
||||
}
|
||||
|
@ -312,7 +313,7 @@ void Emulator::Load()
|
|||
thread.SetEntry(l.GetEntry());
|
||||
Memory.StackMem.Alloc(0x1000);
|
||||
thread.InitStack();
|
||||
thread.AddArgv(m_path);
|
||||
thread.AddArgv(m_elf_path);
|
||||
//thread.AddArgv("-emu");
|
||||
|
||||
m_rsx_callback = Memory.MainMem.Alloc(4 * 4) + 4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue