From 27e27f11ad1d06f42bc18419dcb8422ca7c186db Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 28 Mar 2015 13:01:10 -0700 Subject: [PATCH] Shutdown a couple dialogs more correctly. This brings them back to none instead of shutdown. --- Core/Dialog/PSPGamedataInstallDialog.cpp | 2 +- Core/Dialog/PSPNetconfDialog.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Dialog/PSPGamedataInstallDialog.cpp b/Core/Dialog/PSPGamedataInstallDialog.cpp index 10430367ec..1f716fe85d 100644 --- a/Core/Dialog/PSPGamedataInstallDialog.cpp +++ b/Core/Dialog/PSPGamedataInstallDialog.cpp @@ -132,7 +132,7 @@ int PSPGamedataInstallDialog::Shutdown(bool force) { if (status != SCE_UTILITY_STATUS_FINISHED && !force) return SCE_ERROR_UTILITY_INVALID_STATUS; - return PSPDialog::Shutdown(); + return PSPDialog::Shutdown(force); } std::string PSPGamedataInstallDialog::GetGameDataInstallFileName(SceUtilityGamedataInstallParam *param, std::string filename){ diff --git a/Core/Dialog/PSPNetconfDialog.cpp b/Core/Dialog/PSPNetconfDialog.cpp index b0b39efb25..7bf4b42011 100644 --- a/Core/Dialog/PSPNetconfDialog.cpp +++ b/Core/Dialog/PSPNetconfDialog.cpp @@ -114,7 +114,7 @@ int PSPNetconfDialog::Shutdown(bool force) { if (status != SCE_UTILITY_STATUS_FINISHED && !force) return SCE_ERROR_UTILITY_INVALID_STATUS; - return PSPDialog::Shutdown(); + return PSPDialog::Shutdown(force); } void PSPNetconfDialog::DoState(PointerWrap &p) {