diff options
| author | Subv <subv2112@gmail.com> | 2015-12-28 09:38:10 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2016-03-20 14:28:08 -0500 |
| commit | 381a5c053f76a7d85d811ebf37a5943f6a57579e (patch) | |
| tree | 61962f97006f902025012eda18c144dc3d06bea7 /src/core/hle/service/fs/archive.cpp | |
| parent | 784c5539eaadb69c36363c89008e3a37ab9e9ae7 (diff) | |
HLE/FS: FS::CreateFile takes an u64 for the file size.
Diffstat (limited to 'src/core/hle/service/fs/archive.cpp')
| -rw-r--r-- | src/core/hle/service/fs/archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index d64b3656a..57fc2f44d 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp @@ -347,7 +347,7 @@ ResultCode DeleteDirectoryFromArchive(ArchiveHandle archive_handle, const FileSy ErrorSummary::Canceled, ErrorLevel::Status); } -ResultCode CreateFileInArchive(ArchiveHandle archive_handle, const FileSys::Path& path, u32 file_size) { +ResultCode CreateFileInArchive(ArchiveHandle archive_handle, const FileSys::Path& path, u64 file_size) { ArchiveBackend* archive = GetArchive(archive_handle); if (archive == nullptr) return ERR_INVALID_HANDLE; |
