cellMsgDialog: send DRAWING_END on abort

This commit is contained in:
Megamouse 2022-06-06 19:50:59 +02:00
parent 0f499e36fb
commit 4d09be25aa
1 changed files with 2 additions and 1 deletions

View File

@ -484,7 +484,8 @@ error_code cellMsgDialogAbort()
if (auto dlg = manager->get<rsx::overlays::message_dialog>())
{
g_fxo->get<msg_dlg_thread>().wait_until = 0;
dlg->close(false, true);
dlg->close(false, true); // this doesn't call on_close
sysutil_send_system_cmd(CELL_SYSUTIL_DRAWING_END, 0);
return CELL_OK;
}
}