mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-29 01:59:13 +02:00
Merge pull request #5284 from sum2012/sce-Utility
Fix sceUtilityMsgDialogAbort
This commit is contained in:
@@ -290,8 +290,13 @@ int PSPMsgDialog::Update(int animSpeed)
|
||||
|
||||
int PSPMsgDialog::Abort()
|
||||
{
|
||||
status = SCE_UTILITY_STATUS_FINISHED;
|
||||
return 0;
|
||||
//Fix Katekyoushi Hitman Reborn! Battle Arena
|
||||
if (status != SCE_UTILITY_STATUS_RUNNING)
|
||||
return SCE_ERROR_UTILITY_INVALID_STATUS;
|
||||
else {
|
||||
status = SCE_UTILITY_STATUS_FINISHED;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
int PSPMsgDialog::Shutdown(bool force)
|
||||
|
||||
Reference in New Issue
Block a user