summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/patch_manager.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-10-17 17:49:11 +0200
committerGitHub <noreply@github.com>2023-10-17 17:49:11 +0200
commitbd05ace08d04fe42b9cc94dae611adf2859d7c99 (patch)
tree185415915b3aec7b42f4e4be2ae53790c751d168 /src/core/file_sys/patch_manager.cpp
parentMerge pull request #11747 from Kelebek1/image_alias_sample_names (diff)
parentfsmitm_romfsbuild: avoid unnecessary copies of vfs pointers (diff)
downloadyuzu-bd05ace08d04fe42b9cc94dae611adf2859d7c99.tar
yuzu-bd05ace08d04fe42b9cc94dae611adf2859d7c99.tar.gz
yuzu-bd05ace08d04fe42b9cc94dae611adf2859d7c99.tar.bz2
yuzu-bd05ace08d04fe42b9cc94dae611adf2859d7c99.tar.lz
yuzu-bd05ace08d04fe42b9cc94dae611adf2859d7c99.tar.xz
yuzu-bd05ace08d04fe42b9cc94dae611adf2859d7c99.tar.zst
yuzu-bd05ace08d04fe42b9cc94dae611adf2859d7c99.zip
Diffstat (limited to 'src/core/file_sys/patch_manager.cpp')
-rw-r--r--src/core/file_sys/patch_manager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp
index 8e475f25a..0bca05587 100644
--- a/src/core/file_sys/patch_manager.cpp
+++ b/src/core/file_sys/patch_manager.cpp
@@ -377,16 +377,16 @@ static void ApplyLayeredFS(VirtualFile& romfs, u64 title_id, ContentRecordType t
auto romfs_dir = FindSubdirectoryCaseless(subdir, "romfs");
if (romfs_dir != nullptr)
- layers.push_back(std::make_shared<CachedVfsDirectory>(romfs_dir));
+ layers.emplace_back(std::make_shared<CachedVfsDirectory>(std::move(romfs_dir)));
auto ext_dir = FindSubdirectoryCaseless(subdir, "romfs_ext");
if (ext_dir != nullptr)
- layers_ext.push_back(std::make_shared<CachedVfsDirectory>(ext_dir));
+ layers_ext.emplace_back(std::make_shared<CachedVfsDirectory>(std::move(ext_dir)));
if (type == ContentRecordType::HtmlDocument) {
auto manual_dir = FindSubdirectoryCaseless(subdir, "manual_html");
if (manual_dir != nullptr)
- layers.push_back(std::make_shared<CachedVfsDirectory>(manual_dir));
+ layers.emplace_back(std::make_shared<CachedVfsDirectory>(std::move(manual_dir)));
}
}
@@ -400,7 +400,7 @@ static void ApplyLayeredFS(VirtualFile& romfs, u64 title_id, ContentRecordType t
return;
}
- layers.push_back(std::move(extracted));
+ layers.emplace_back(std::move(extracted));
auto layered = LayeredVfsDirectory::MakeLayeredDirectory(std::move(layers));
if (layered == nullptr) {