mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-13 03:40:49 +00:00
Compilation fix 5
This commit is contained in:
parent
7f5f67163b
commit
fdc8479635
@ -381,10 +381,10 @@ int cellSysutilUnregisterCallback(int slot)
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
int cellMsgDialogOpen2(u32 type, char* msgString, mem_func_ptr_t<CellMsgDialogCallback> callback, mem_ptr_t<void> userData, u32 extParam)
|
||||
int cellMsgDialogOpen2(u32 type, mem_list_ptr_t<u8> msgString, mem_func_ptr_t<CellMsgDialogCallback> callback, mem_ptr_t<void> userData, u32 extParam)
|
||||
{
|
||||
cellSysutil->Warning("cellMsgDialogOpen2(type=0x%x, msgString_addr=0x%x, callback_addr=0x%x, userData=0x%x, extParam=0x%x)",
|
||||
type, (u32)msgString, callback.GetAddr(), userData.GetAddr(), extParam);
|
||||
type, msgString.GetAddr(), callback.GetAddr(), userData.GetAddr(), extParam);
|
||||
|
||||
long style = 0;
|
||||
|
||||
@ -406,7 +406,7 @@ int cellMsgDialogOpen2(u32 type, char* msgString, mem_func_ptr_t<CellMsgDialogCa
|
||||
style |= rOK;
|
||||
}
|
||||
|
||||
int res = rMessageBox(std::string(msgString), rGetApp().GetAppName(), style);
|
||||
int res = rMessageBox(std::string(msgString.GetString()), rGetApp().GetAppName(), style);
|
||||
|
||||
u64 status;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user