aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/partition_filesystem.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-06-20 11:39:10 -0500
committerSubv <subv2112@gmail.com>2018-06-20 11:39:10 -0500
commita3d82ef5d90b02a256087edf9c0124b51b059c18 (patch)
tree859f41acecbdcfcbdf19df80903a045d6e2b0bcb /src/core/file_sys/partition_filesystem.h
parentbe1f5dedfbfd88a1e1b13d968d5526ffe14e6d6d (diff)
Build: Fixed some MSVC warnings in various parts of the code.
Diffstat (limited to 'src/core/file_sys/partition_filesystem.h')
-rw-r--r--src/core/file_sys/partition_filesystem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/file_sys/partition_filesystem.h b/src/core/file_sys/partition_filesystem.h
index 573c90057..65cf572f4 100644
--- a/src/core/file_sys/partition_filesystem.h
+++ b/src/core/file_sys/partition_filesystem.h
@@ -27,9 +27,9 @@ public:
Loader::ResultStatus Load(const std::vector<u8>& file_data, size_t offset = 0);
u32 GetNumEntries() const;
- u64 GetEntryOffset(int index) const;
- u64 GetEntrySize(int index) const;
- std::string GetEntryName(int index) const;
+ u64 GetEntryOffset(u32 index) const;
+ u64 GetEntrySize(u32 index) const;
+ std::string GetEntryName(u32 index) const;
u64 GetFileOffset(const std::string& name) const;
u64 GetFileSize(const std::string& name) const;