diff options
| author | 2018-10-02 08:56:56 -0400 | |
|---|---|---|
| committer | 2018-10-04 12:29:20 -0400 | |
| commit | c1e069c066a609103c6b880585738ecabe48ddd2 (patch) | |
| tree | bf599fa1e774ae098866d50ca5acbaf3441eb16e /src/core/file_sys/romfs.cpp | |
| parent | fsmitm_romfsbuild: Add support for stubbing and IPS patches in LFS (diff) | |
| download | yuzu-c1e069c066a609103c6b880585738ecabe48ddd2.tar.gz yuzu-c1e069c066a609103c6b880585738ecabe48ddd2.tar.xz yuzu-c1e069c066a609103c6b880585738ecabe48ddd2.zip | |
fsmitm_romfsbuild: Extract stubs and IPS to romfs_ext dir
Diffstat (limited to 'src/core/file_sys/romfs.cpp')
| -rw-r--r-- | src/core/file_sys/romfs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/romfs.cpp b/src/core/file_sys/romfs.cpp index 5910f7046..81e1f66ac 100644 --- a/src/core/file_sys/romfs.cpp +++ b/src/core/file_sys/romfs.cpp | |||
| @@ -129,11 +129,11 @@ VirtualDir ExtractRomFS(VirtualFile file, RomFSExtractionType type) { | |||
| 129 | return out; | 129 | return out; |
| 130 | } | 130 | } |
| 131 | 131 | ||
| 132 | VirtualFile CreateRomFS(VirtualDir dir) { | 132 | VirtualFile CreateRomFS(VirtualDir dir, VirtualDir ext) { |
| 133 | if (dir == nullptr) | 133 | if (dir == nullptr) |
| 134 | return nullptr; | 134 | return nullptr; |
| 135 | 135 | ||
| 136 | RomFSBuildContext ctx{dir}; | 136 | RomFSBuildContext ctx{dir, ext}; |
| 137 | return ConcatenatedVfsFile::MakeConcatenatedFile(0, ctx.Build(), dir->GetName()); | 137 | return ConcatenatedVfsFile::MakeConcatenatedFile(0, ctx.Build(), dir->GetName()); |
| 138 | } | 138 | } |
| 139 | 139 | ||