diff options
author | Liam <byteslice@airmail.cc> | 2023-11-01 01:11:14 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-11-01 04:26:51 +0100 |
commit | b0c6bf497a1eabec14c116b710dcc757e77455bf (patch) | |
tree | 5d682ed36f0d2e310834096886a4562fd84ce3a0 /src/core/file_sys/romfs.h | |
parent | Merge pull request #11922 from t895/simplify-card-layout (diff) | |
download | yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.gz yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.bz2 yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.lz yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.xz yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.tar.zst yuzu-b0c6bf497a1eabec14c116b710dcc757e77455bf.zip |
Diffstat (limited to 'src/core/file_sys/romfs.h')
-rw-r--r-- | src/core/file_sys/romfs.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/core/file_sys/romfs.h b/src/core/file_sys/romfs.h index 5d7f0c2a8..b75ff1aad 100644 --- a/src/core/file_sys/romfs.h +++ b/src/core/file_sys/romfs.h @@ -7,16 +7,9 @@ namespace FileSys { -enum class RomFSExtractionType { - Full, // Includes data directory - Truncated, // Traverses into data directory - SingleDiscard, // Traverses into the first subdirectory of root -}; - // Converts a RomFS binary blob to VFS Filesystem // Returns nullptr on failure -VirtualDir ExtractRomFS(VirtualFile file, - RomFSExtractionType type = RomFSExtractionType::Truncated); +VirtualDir ExtractRomFS(VirtualFile file); // Converts a VFS filesystem into a RomFS binary // Returns nullptr on failure |