summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/disk_archive.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-12-28 15:38:10 +0100
committerSubv <subv2112@gmail.com>2016-03-20 20:28:08 +0100
commit381a5c053f76a7d85d811ebf37a5943f6a57579e (patch)
tree61962f97006f902025012eda18c144dc3d06bea7 /src/core/file_sys/disk_archive.cpp
parentMerge pull request #1538 from lioncash/dot (diff)
downloadyuzu-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 '')
-rw-r--r--src/core/file_sys/disk_archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/disk_archive.cpp b/src/core/file_sys/disk_archive.cpp
index a51416774..614c2e2a0 100644
--- a/src/core/file_sys/disk_archive.cpp
+++ b/src/core/file_sys/disk_archive.cpp
@@ -37,7 +37,7 @@ bool DiskArchive::DeleteDirectory(const Path& path) const {
return FileUtil::DeleteDir(mount_point + path.AsString());
}
-ResultCode DiskArchive::CreateFile(const FileSys::Path& path, u32 size) const {
+ResultCode DiskArchive::CreateFile(const FileSys::Path& path, u64 size) const {
std::string full_path = mount_point + path.AsString();
if (FileUtil::Exists(full_path))