diff options
author | Subv <subv2112@gmail.com> | 2015-12-28 15:38:10 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2016-03-20 20:28:08 +0100 |
commit | 381a5c053f76a7d85d811ebf37a5943f6a57579e (patch) | |
tree | 61962f97006f902025012eda18c144dc3d06bea7 /src/core/file_sys/ivfc_archive.cpp | |
parent | Merge pull request #1538 from lioncash/dot (diff) | |
download | yuzu-381a5c053f76a7d85d811ebf37a5943f6a57579e.tar yuzu-381a5c053f76a7d85d811ebf37a5943f6a57579e.tar.gz yuzu-381a5c053f76a7d85d811ebf37a5943f6a57579e.tar.bz2 yuzu-381a5c053f76a7d85d811ebf37a5943f6a57579e.tar.lz yuzu-381a5c053f76a7d85d811ebf37a5943f6a57579e.tar.xz yuzu-381a5c053f76a7d85d811ebf37a5943f6a57579e.tar.zst yuzu-381a5c053f76a7d85d811ebf37a5943f6a57579e.zip |
Diffstat (limited to 'src/core/file_sys/ivfc_archive.cpp')
-rw-r--r-- | src/core/file_sys/ivfc_archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/ivfc_archive.cpp b/src/core/file_sys/ivfc_archive.cpp index 2efc31a8c..5325afb58 100644 --- a/src/core/file_sys/ivfc_archive.cpp +++ b/src/core/file_sys/ivfc_archive.cpp @@ -39,7 +39,7 @@ bool IVFCArchive::DeleteDirectory(const Path& path) const { return false; } -ResultCode IVFCArchive::CreateFile(const Path& path, u32 size) const { +ResultCode IVFCArchive::CreateFile(const Path& path, u64 size) const { LOG_CRITICAL(Service_FS, "Attempted to create a file in an IVFC archive (%s).", GetName().c_str()); // TODO: Verify error code return ResultCode(ErrorDescription::NotAuthorized, ErrorModule::FS, ErrorSummary::NotSupported, ErrorLevel::Permanent); |