MCPcopy Create free account
hub / github.com/RPCSX/rpcsx / cellMsgDialogOpenSimulViewWarning

Function cellMsgDialogOpenSimulViewWarning

ps3fw/cellMsgDialog.cpp:583–594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

581}
582
583error_code cellMsgDialogOpenSimulViewWarning(vm::ptr<CellMsgDialogCallback> callback, vm::ptr<void> userData, vm::ptr<void> extParam)
584{
585 cellSysutil.todo("cellMsgDialogOpenSimulViewWarning(callback=*0x%x, userData=*0x%x, extParam=*0x%x)", callback, userData, extParam);
586
587 error_code ret = cellMsgDialogOpen2(CELL_MSGDIALOG_TYPE_SE_TYPE_NORMAL | CELL_MSGDIALOG_TYPE_BUTTON_TYPE_OK, vm::make_str("SimulView Warning"), callback, userData, extParam);
588
589 // The dialog should ideally only be closeable by pressing ok after 3 seconds until it closes itself automatically after 5 seconds
590 if (ret == CELL_OK)
591 cellMsgDialogClose(5000.0f);
592
593 return ret;
594}
595
596error_code cellMsgDialogProgressBarSetMsg(u32 progressBarIndex, vm::cptr<char> msgString)
597{

Callers

nothing calls this directly

Calls 3

cellMsgDialogOpen2Function · 0.85
make_strFunction · 0.85
cellMsgDialogCloseFunction · 0.85

Tested by

no test coverage detected