Stub cellMsgDialogOpenSimulViewWarning

This commit is contained in:
scribam 2017-06-21 21:28:17 +02:00 committed by Ivan
parent 4d294e7a69
commit fe67d51e5e

View file

@ -203,9 +203,10 @@ s32 cellMsgDialogOpenErrorCode(ppu_thread& ppu, u32 errorCode, vm::ptr<CellMsgDi
return cellMsgDialogOpen2(CELL_MSGDIALOG_TYPE_SE_TYPE_ERROR | CELL_MSGDIALOG_TYPE_BUTTON_TYPE_OK, vm::make_str(error), callback, userData, extParam); return cellMsgDialogOpen2(CELL_MSGDIALOG_TYPE_SE_TYPE_ERROR | CELL_MSGDIALOG_TYPE_BUTTON_TYPE_OK, vm::make_str(error), callback, userData, extParam);
} }
s32 cellMsgDialogOpenSimulViewWarning() s32 cellMsgDialogOpenSimulViewWarning(vm::ptr<CellMsgDialogCallback> callback, vm::ptr<void> userData, vm::ptr<void> extParam)
{ {
fmt::throw_exception("Unimplemented" HERE); cellSysutil.todo("cellMsgDialogOpenSimulViewWarning(callback=*0x%x, userData=*0x%x, extParam=*0x%x)", callback, userData, extParam);
return CELL_OK;
} }
s32 cellMsgDialogClose(f32 delay) s32 cellMsgDialogClose(f32 delay)