Browse Source

Merge pull request #3477 from FearlessTobi/webapplet-shit

core/web_browser: Allow WebApplet to exit gracefully when an error occurs
pull/15/merge
bunnei 6 years ago
committed by GitHub
parent
commit
e731c4b991
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/core/hle/service/am/applets/web_browser.cpp

6
src/core/hle/service/am/applets/web_browser.cpp

@ -254,6 +254,12 @@ void WebBrowser::Execute() {
if (status != RESULT_SUCCESS) {
complete = true;
// This is a workaround in order not to softlock yuzu when an error happens during the
// webapplet init. In order to avoid an svcBreak, the status is set to RESULT_SUCCESS
Finalize();
status = RESULT_SUCCESS;
return;
}

Loading…
Cancel
Save