mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +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
|
@ -6,7 +6,7 @@ extern Module sys_fs;
|
|||
|
||||
int cellFsOpen(u32 path_addr, int flags, mem32_t fd, mem32_t arg, u64 size)
|
||||
{
|
||||
const wxString& path = Memory.ReadString(path_addr);
|
||||
const wxString& path = wxString(Memory.ReadString(path_addr), wxConvUTF8);
|
||||
sys_fs.Log("cellFsOpen(path: %s, flags: 0x%x, fd_addr: 0x%x, arg_addr: 0x%x, size: 0x%llx)",
|
||||
path.mb_str(), flags, fd.GetAddr(), arg.GetAddr(), size);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue