diff options
author | Liam <byteslice@airmail.cc> | 2023-10-31 20:11:14 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-10-31 23:26:51 -0400 |
commit | b0c6bf497a1eabec14c116b710dcc757e77455bf (patch) | |
tree | 5d682ed36f0d2e310834096886a4562fd84ce3a0 /src/yuzu/main.cpp | |
parent | c60204e2551ebf42ea7202992dac3789305d2a4e (diff) |
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; |