Browse Source
Merge pull request #8135 from Morph1984/websession-hack
applets/web: Keep foreground (websession) web applet open
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
0 deletions
-
src/core/hle/service/am/applets/applet_web_browser.cpp
|
|
|
@ -446,6 +446,14 @@ void WebBrowser::ExecuteLogin() { |
|
|
|
} |
|
|
|
|
|
|
|
void WebBrowser::ExecuteOffline() { |
|
|
|
// TODO (Morph): This is a hack for WebSession foreground web applets such as those used by
|
|
|
|
// Super Mario 3D All-Stars.
|
|
|
|
// TODO (Morph): Implement WebSession.
|
|
|
|
if (applet_mode == LibraryAppletMode::AllForegroundInitiallyHidden) { |
|
|
|
LOG_WARNING(Service_AM, "WebSession is not implemented"); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
const auto main_url = GetMainURL(Common::FS::PathToUTF8String(offline_document)); |
|
|
|
|
|
|
|
if (!Common::FS::Exists(main_url)) { |
|
|
|
|