diff options
author | Liam <byteslice@airmail.cc> | 2023-12-01 23:39:48 -0500 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-12-01 23:39:48 -0500 |
commit | 45b6161582e0dd5b54fd3c06b3176f5b32ca10aa (patch) | |
tree | eeef2fc18a459377ab40e9fb36810b08fd31c11b /src/yuzu/main.cpp | |
parent | e9a43bae6f80e3c650f379a00372547648247536 (diff) |
file_sys: handle null romfs
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 10c788290..b056c3717 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2713,11 +2713,6 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa } const auto base_romfs = base_nca->GetRomFS(); - if (!base_romfs) { - failed(); - return; - } - const auto dump_dir = target == DumpRomFSTarget::Normal ? Common::FS::GetYuzuPath(Common::FS::YuzuPath::DumpDir) |