mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +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
|
@ -476,7 +476,7 @@ int cellSysutilUnregisterCallback(int slot)
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
int cellMsgDialogOpen2(u32 type, u32 msgString_addr, u32 callback_addr, u32 userData, u32 extParam)
|
||||
int cellMsgDialogOpen2(u32 type, char* msgString, u32 callback_addr, u32 userData, u32 extParam)
|
||||
{
|
||||
long style = 0;
|
||||
|
||||
|
@ -498,7 +498,7 @@ int cellMsgDialogOpen2(u32 type, u32 msgString_addr, u32 callback_addr, u32 user
|
|||
style |= wxOK;
|
||||
}
|
||||
|
||||
int res = wxMessageBox(Memory.ReadString(msgString_addr), wxGetApp().GetAppName(), style);
|
||||
int res = wxMessageBox(wxString(msgString, wxConvUTF8), wxGetApp().GetAppName(), style);
|
||||
|
||||
u64 status;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue