diff options
author | shinyquagsire23 <mtinc2@gmail.com> | 2018-04-16 14:51:59 +0200 |
---|---|---|
committer | shinyquagsire23 <mtinc2@gmail.com> | 2018-04-16 14:51:59 +0200 |
commit | 83aa38b2390ac4af1757d03d3549d73e26dbfa10 (patch) | |
tree | eb7db95df6b9fcffa84b426845845e5a0814f2fd /src/core/file_sys/partition_filesystem.h | |
parent | file_sys: Add HFS/PFS helper component (diff) | |
download | yuzu-83aa38b2390ac4af1757d03d3549d73e26dbfa10.tar yuzu-83aa38b2390ac4af1757d03d3549d73e26dbfa10.tar.gz yuzu-83aa38b2390ac4af1757d03d3549d73e26dbfa10.tar.bz2 yuzu-83aa38b2390ac4af1757d03d3549d73e26dbfa10.tar.lz yuzu-83aa38b2390ac4af1757d03d3549d73e26dbfa10.tar.xz yuzu-83aa38b2390ac4af1757d03d3549d73e26dbfa10.tar.zst yuzu-83aa38b2390ac4af1757d03d3549d73e26dbfa10.zip |
Diffstat (limited to 'src/core/file_sys/partition_filesystem.h')
-rw-r--r-- | src/core/file_sys/partition_filesystem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/partition_filesystem.h b/src/core/file_sys/partition_filesystem.h index 4cc534f50..573c90057 100644 --- a/src/core/file_sys/partition_filesystem.h +++ b/src/core/file_sys/partition_filesystem.h @@ -24,9 +24,9 @@ namespace FileSys { class PartitionFilesystem { public: Loader::ResultStatus Load(const std::string& file_path, size_t offset = 0); - Loader::ResultStatus Load(const std::vector<u8> file_data, size_t offset = 0); + Loader::ResultStatus Load(const std::vector<u8>& file_data, size_t offset = 0); - u32 GetNumEntries(void) const; + u32 GetNumEntries() const; u64 GetEntryOffset(int index) const; u64 GetEntrySize(int index) const; std::string GetEntryName(int index) const; |