cellMsgDialog: Improve some logging and localization

This commit is contained in:
Megamouse 2023-02-18 10:39:07 +01:00
parent ebf72eb126
commit a7c3753c5a
2 changed files with 6 additions and 6 deletions

View file

@ -369,11 +369,11 @@ error_code cellMsgDialogOpen2(u32 type, vm::cptr<char> msgString, vm::ptr<CellMs
if (_type.se_normal)
{
cellSysutil.warning("%s", msgString);
cellSysutil.warning("Opening message dialog with message: %s", msgString);
}
else
{
cellSysutil.error("%s", msgString);
cellSysutil.error("Opening error message dialog with message: %s", msgString);
}
return open_msg_dialog(false, type, msgString, callback, userData, extParam);