summaryrefslogtreecommitdiff
path: root/src/core/file_sys/romfs.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-26 16:09:16 -0400
committerGravatar GitHub2018-09-26 16:09:16 -0400
commit92dd496fb94385aa16adec75d6eb8bc3ef29c6b0 (patch)
tree113a0ad25b279c70d825514e9e35020f08a366a4 /src/core/file_sys/romfs.cpp
parentMerge pull request #1398 from lioncash/macos (diff)
parentpatch_manager: Invert conditionals within ApplyLayeredFS() (diff)
downloadyuzu-92dd496fb94385aa16adec75d6eb8bc3ef29c6b0.tar.gz
yuzu-92dd496fb94385aa16adec75d6eb8bc3ef29c6b0.tar.xz
yuzu-92dd496fb94385aa16adec75d6eb8bc3ef29c6b0.zip
Merge pull request #1401 from lioncash/vfs
vfs: Minor cleanup related changes to layered VFS code
Diffstat (limited to 'src/core/file_sys/romfs.cpp')
-rw-r--r--src/core/file_sys/romfs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/romfs.cpp b/src/core/file_sys/romfs.cpp
index 205284a4d..5910f7046 100644
--- a/src/core/file_sys/romfs.cpp
+++ b/src/core/file_sys/romfs.cpp
@@ -134,7 +134,7 @@ VirtualFile CreateRomFS(VirtualDir dir) {
134 return nullptr; 134 return nullptr;
135 135
136 RomFSBuildContext ctx{dir}; 136 RomFSBuildContext ctx{dir};
137 return ConcatenateFiles<0>(ctx.Build(), dir->GetName()); 137 return ConcatenatedVfsFile::MakeConcatenatedFile(0, ctx.Build(), dir->GetName());
138} 138}
139 139
140} // namespace FileSys 140} // namespace FileSys