mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
cellMsgDialogAbort: don't call on_close and properly re-enable pads
This commit is contained in:
parent
8dafc8e542
commit
3f00b485a0
3 changed files with 7 additions and 5 deletions
|
@ -389,7 +389,7 @@ error_code cellMsgDialogAbort()
|
|||
{
|
||||
if (auto dlg = manager->get<rsx::overlays::message_dialog>())
|
||||
{
|
||||
dlg->close();
|
||||
dlg->close(false);
|
||||
return CELL_OK;
|
||||
}
|
||||
}
|
||||
|
@ -406,7 +406,9 @@ error_code cellMsgDialogAbort()
|
|||
return CELL_SYSUTIL_ERROR_BUSY;
|
||||
}
|
||||
|
||||
verify(HERE), fxm::remove<MsgDialogBase>();
|
||||
verify(HERE), fxm::remove<MsgDialogBase>(); // this shouldn't call on_close
|
||||
pad::SetIntercepted(false); // so we need to reenable the pads here
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue