diff options
author | bunnei <bunneidev@gmail.com> | 2020-03-22 13:11:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 13:11:02 -0400 |
commit | e731c4b991a675c1e6dfd2a8511e84d3f739fa88 (patch) | |
tree | d9efca2350393bdb913a3db92e467dfe286eb812 /src | |
parent | e5bb5d13c4227e8a448975f2920950cd32ba79ea (diff) | |
parent | 977418c65bdaa3f1157eafff0a4608e483b0bacb (diff) |
Merge pull request #3477 from FearlessTobi/webapplet-shit
core/web_browser: Allow WebApplet to exit gracefully when an error occurs
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/am/applets/web_browser.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applets/web_browser.cpp b/src/core/hle/service/am/applets/web_browser.cpp index 12443c910..9f30e167d 100644 --- a/src/core/hle/service/am/applets/web_browser.cpp +++ b/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; } |