summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs_concat.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-11-28 04:27:57 +0100
committerLiam <byteslice@airmail.cc>2023-12-03 22:29:57 +0100
commit07514887273edee003b26e308b7ad6bb0c3e8fbc (patch)
tree26004d732c91a7913cfabbfe64e5ca4125ac78e3 /src/core/file_sys/vfs_concat.h
parentromfs: cache file and directory metadata tables (diff)
downloadyuzu-07514887273edee003b26e308b7ad6bb0c3e8fbc.tar
yuzu-07514887273edee003b26e308b7ad6bb0c3e8fbc.tar.gz
yuzu-07514887273edee003b26e308b7ad6bb0c3e8fbc.tar.bz2
yuzu-07514887273edee003b26e308b7ad6bb0c3e8fbc.tar.lz
yuzu-07514887273edee003b26e308b7ad6bb0c3e8fbc.tar.xz
yuzu-07514887273edee003b26e308b7ad6bb0c3e8fbc.tar.zst
yuzu-07514887273edee003b26e308b7ad6bb0c3e8fbc.zip
Diffstat (limited to 'src/core/file_sys/vfs_concat.h')
-rw-r--r--src/core/file_sys/vfs_concat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/vfs_concat.h b/src/core/file_sys/vfs_concat.h
index cbddd12bd..b5f3d72e3 100644
--- a/src/core/file_sys/vfs_concat.h
+++ b/src/core/file_sys/vfs_concat.h
@@ -37,7 +37,7 @@ public:
/// Convenience function that turns a map of offsets to files into a concatenated file, filling
/// gaps with a given filler byte.
static VirtualFile MakeConcatenatedFile(u8 filler_byte, std::string&& name,
- std::multimap<u64, VirtualFile>&& files);
+ std::vector<std::pair<u64, VirtualFile>>&& files);
std::string GetName() const override;
std::size_t GetSize() const override;