diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-03 09:13:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-03 09:13:46 -0400 |
| commit | a0f9a3ab5b591ec32a2c550fd681a29f2e4c3447 (patch) | |
| tree | bd11a32ebcb29a3fcc90f5ee4f6659541beddfec /src/yuzu/main.cpp | |
| parent | 57c8dcfd77c02ba67280ceef89a5d98478f894e4 (diff) | |
| parent | b0c6bf497a1eabec14c116b710dcc757e77455bf (diff) | |
Merge pull request #11936 from liamwhite/romfs-nonsense
romfs: fix extraction of single-directory root
Diffstat (limited to 'src/yuzu/main.cpp')
| -rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 0df163029..db9da6dc8 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2737,7 +2737,7 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa return; } - const auto extracted = FileSys::ExtractRomFS(romfs, FileSys::RomFSExtractionType::Full); + const auto extracted = FileSys::ExtractRomFS(romfs); if (extracted == nullptr) { failed(); return; |
