summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZach Hilman <DarkLordZach@users.noreply.github.com>2020-04-14 22:59:25 +0200
committerGitHub <noreply@github.com>2020-04-14 22:59:25 +0200
commit8040f6d54430578e84ab60c2d219f23dfcf1862c (patch)
treea6bf38b200c5ef57971e6542c22944d7f34d2e59
parentMerge pull request #3636 from ReinUsesLisp/drop-vk-hpp (diff)
parentfile_sys: patch_manager: Return early when there are no layers to apply. (diff)
downloadyuzu-8040f6d54430578e84ab60c2d219f23dfcf1862c.tar
yuzu-8040f6d54430578e84ab60c2d219f23dfcf1862c.tar.gz
yuzu-8040f6d54430578e84ab60c2d219f23dfcf1862c.tar.bz2
yuzu-8040f6d54430578e84ab60c2d219f23dfcf1862c.tar.lz
yuzu-8040f6d54430578e84ab60c2d219f23dfcf1862c.tar.xz
yuzu-8040f6d54430578e84ab60c2d219f23dfcf1862c.tar.zst
yuzu-8040f6d54430578e84ab60c2d219f23dfcf1862c.zip
-rw-r--r--src/core/file_sys/patch_manager.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp
index e226e9711..e77e82b8d 100644
--- a/src/core/file_sys/patch_manager.cpp
+++ b/src/core/file_sys/patch_manager.cpp
@@ -348,6 +348,12 @@ static void ApplyLayeredFS(VirtualFile& romfs, u64 title_id, ContentRecordType t
if (ext_dir != nullptr)
layers_ext.push_back(std::move(ext_dir));
}
+
+ // When there are no layers to apply, return early as there is no need to rebuild the RomFS
+ if (layers.empty() && layers_ext.empty()) {
+ return;
+ }
+
layers.push_back(std::move(extracted));
auto layered = LayeredVfsDirectory::MakeLayeredDirectory(std::move(layers));