diff options
author | Liam <byteslice@airmail.cc> | 2023-11-01 01:11:14 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-11-01 04:26:51 +0100 |
commit | b0c6bf497a1eabec14c116b710dcc757e77455bf (patch) | |
tree | 5d682ed36f0d2e310834096886a4562fd84ce3a0 /src/core/hle/service | |
parent | Merge pull request #11922 from t895/simplify-card-layout (diff) | |
download | yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.gz yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.bz2 yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.lz yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.xz yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.zst yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/am/applets/applet_web_browser.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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 1c9a1dc29..b0ea2b381 100644 --- a/src/core/hle/service/am/applets/applet_web_browser.cpp +++ b/src/core/hle/service/am/applets/applet_web_browser.cpp @@ -330,8 +330,7 @@ void WebBrowser::ExtractOfflineRomFS() { LOG_DEBUG(Service_AM, "Extracting RomFS to {}", Common::FS::PathToUTF8String(offline_cache_dir)); - const auto extracted_romfs_dir = - FileSys::ExtractRomFS(offline_romfs, FileSys::RomFSExtractionType::SingleDiscard); + const auto extracted_romfs_dir = FileSys::ExtractRomFS(offline_romfs); const auto temp_dir = system.GetFilesystem()->CreateDirectory( Common::FS::PathToUTF8String(offline_cache_dir), FileSys::Mode::ReadWrite); |