diff options
Diffstat (limited to 'src/core/hle')
8 files changed, 9 insertions, 9 deletions
diff --git a/src/core/hle/service/am/applets/applet_cabinet.cpp b/src/core/hle/service/am/applets/applet_cabinet.cpp index d76a9ef5a..93c9f2a55 100644 --- a/src/core/hle/service/am/applets/applet_cabinet.cpp +++ b/src/core/hle/service/am/applets/applet_cabinet.cpp | |||
| @@ -175,7 +175,7 @@ void Cabinet::Cancel() { | |||
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | Result Cabinet::RequestExit() { | 177 | Result Cabinet::RequestExit() { |
| 178 | this->Cancel(); | 178 | frontend.Close(); |
| 179 | R_SUCCEED(); | 179 | R_SUCCEED(); |
| 180 | } | 180 | } |
| 181 | 181 | ||
diff --git a/src/core/hle/service/am/applets/applet_controller.cpp b/src/core/hle/service/am/applets/applet_controller.cpp index 11b64dbbd..2d1d115d7 100644 --- a/src/core/hle/service/am/applets/applet_controller.cpp +++ b/src/core/hle/service/am/applets/applet_controller.cpp | |||
| @@ -263,7 +263,7 @@ void Controller::ConfigurationComplete() { | |||
| 263 | } | 263 | } |
| 264 | 264 | ||
| 265 | Result Controller::RequestExit() { | 265 | Result Controller::RequestExit() { |
| 266 | this->ConfigurationComplete(); | 266 | frontend.Close(); |
| 267 | R_SUCCEED(); | 267 | R_SUCCEED(); |
| 268 | } | 268 | } |
| 269 | 269 | ||
diff --git a/src/core/hle/service/am/applets/applet_error.cpp b/src/core/hle/service/am/applets/applet_error.cpp index d6935c09d..b46ea840c 100644 --- a/src/core/hle/service/am/applets/applet_error.cpp +++ b/src/core/hle/service/am/applets/applet_error.cpp | |||
| @@ -210,7 +210,7 @@ void Error::DisplayCompleted() { | |||
| 210 | } | 210 | } |
| 211 | 211 | ||
| 212 | Result Error::RequestExit() { | 212 | Result Error::RequestExit() { |
| 213 | this->DisplayCompleted(); | 213 | frontend.Close(); |
| 214 | R_SUCCEED(); | 214 | R_SUCCEED(); |
| 215 | } | 215 | } |
| 216 | 216 | ||
diff --git a/src/core/hle/service/am/applets/applet_general_backend.cpp b/src/core/hle/service/am/applets/applet_general_backend.cpp index baf680040..8b352020e 100644 --- a/src/core/hle/service/am/applets/applet_general_backend.cpp +++ b/src/core/hle/service/am/applets/applet_general_backend.cpp | |||
| @@ -151,7 +151,7 @@ void Auth::AuthFinished(bool is_successful) { | |||
| 151 | } | 151 | } |
| 152 | 152 | ||
| 153 | Result Auth::RequestExit() { | 153 | Result Auth::RequestExit() { |
| 154 | this->AuthFinished(false); | 154 | frontend.Close(); |
| 155 | R_SUCCEED(); | 155 | R_SUCCEED(); |
| 156 | } | 156 | } |
| 157 | 157 | ||
| @@ -208,7 +208,7 @@ void PhotoViewer::ViewFinished() { | |||
| 208 | } | 208 | } |
| 209 | 209 | ||
| 210 | Result PhotoViewer::RequestExit() { | 210 | Result PhotoViewer::RequestExit() { |
| 211 | this->ViewFinished(); | 211 | frontend.Close(); |
| 212 | R_SUCCEED(); | 212 | R_SUCCEED(); |
| 213 | } | 213 | } |
| 214 | 214 | ||
diff --git a/src/core/hle/service/am/applets/applet_mii_edit.cpp b/src/core/hle/service/am/applets/applet_mii_edit.cpp index a4a3f3cfa..d1f652c09 100644 --- a/src/core/hle/service/am/applets/applet_mii_edit.cpp +++ b/src/core/hle/service/am/applets/applet_mii_edit.cpp | |||
| @@ -136,7 +136,7 @@ void MiiEdit::MiiEditOutputForCharInfoEditing(MiiEditResult result, | |||
| 136 | } | 136 | } |
| 137 | 137 | ||
| 138 | Result MiiEdit::RequestExit() { | 138 | Result MiiEdit::RequestExit() { |
| 139 | this->MiiEditOutput(MiiEditResult::Cancel, -1); | 139 | frontend.Close(); |
| 140 | R_SUCCEED(); | 140 | R_SUCCEED(); |
| 141 | } | 141 | } |
| 142 | 142 | ||
diff --git a/src/core/hle/service/am/applets/applet_profile_select.cpp b/src/core/hle/service/am/applets/applet_profile_select.cpp index 5486d80dc..07abc2563 100644 --- a/src/core/hle/service/am/applets/applet_profile_select.cpp +++ b/src/core/hle/service/am/applets/applet_profile_select.cpp | |||
| @@ -74,7 +74,7 @@ void ProfileSelect::SelectionComplete(std::optional<Common::UUID> uuid) { | |||
| 74 | } | 74 | } |
| 75 | 75 | ||
| 76 | Result ProfileSelect::RequestExit() { | 76 | Result ProfileSelect::RequestExit() { |
| 77 | this->SelectionComplete(std::nullopt); | 77 | frontend.Close(); |
| 78 | R_SUCCEED(); | 78 | R_SUCCEED(); |
| 79 | } | 79 | } |
| 80 | 80 | ||
diff --git a/src/core/hle/service/am/applets/applet_software_keyboard.cpp b/src/core/hle/service/am/applets/applet_software_keyboard.cpp index 6f7499731..4145bb84f 100644 --- a/src/core/hle/service/am/applets/applet_software_keyboard.cpp +++ b/src/core/hle/service/am/applets/applet_software_keyboard.cpp | |||
| @@ -771,7 +771,7 @@ void SoftwareKeyboard::ExitKeyboard() { | |||
| 771 | } | 771 | } |
| 772 | 772 | ||
| 773 | Result SoftwareKeyboard::RequestExit() { | 773 | Result SoftwareKeyboard::RequestExit() { |
| 774 | this->ExitKeyboard(); | 774 | frontend.Close(); |
| 775 | R_SUCCEED(); | 775 | R_SUCCEED(); |
| 776 | } | 776 | } |
| 777 | 777 | ||
diff --git a/src/core/hle/service/am/applets/applet_web_browser.cpp b/src/core/hle/service/am/applets/applet_web_browser.cpp index 59359e4d3..2accf7898 100644 --- a/src/core/hle/service/am/applets/applet_web_browser.cpp +++ b/src/core/hle/service/am/applets/applet_web_browser.cpp | |||
| @@ -364,7 +364,7 @@ void WebBrowser::WebBrowserExit(WebExitReason exit_reason, std::string last_url) | |||
| 364 | } | 364 | } |
| 365 | 365 | ||
| 366 | Result WebBrowser::RequestExit() { | 366 | Result WebBrowser::RequestExit() { |
| 367 | this->WebBrowserExit(WebExitReason::ExitRequested); | 367 | frontend.Close(); |
| 368 | R_SUCCEED(); | 368 | R_SUCCEED(); |
| 369 | } | 369 | } |
| 370 | 370 | ||