diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-04-26 11:48:37 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-04-26 11:49:54 +0200 |
commit | efccebd3db90d7baf0947cd02612ab987ab87868 (patch) | |
tree | a031d8cf890e82e4fa81a43bd84befcd2a2f0576 /core/io/file_access_zip.cpp | |
parent | 11d3768132582d192b8464769f26b493ae822321 (diff) | |
download | redot-engine-efccebd3db90d7baf0947cd02612ab987ab87868.tar.gz |
[Core] Use unztell64 in FileAccessZIP to ensure 64 bit return
Diffstat (limited to 'core/io/file_access_zip.cpp')
-rw-r--r-- | core/io/file_access_zip.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/file_access_zip.cpp b/core/io/file_access_zip.cpp index 3c7f67664d..c0d1afc8e1 100644 --- a/core/io/file_access_zip.cpp +++ b/core/io/file_access_zip.cpp @@ -277,7 +277,7 @@ void FileAccessZip::seek_end(int64_t p_position) { uint64_t FileAccessZip::get_position() const { ERR_FAIL_NULL_V(zfile, 0); - return unztell(zfile); + return unztell64(zfile); } uint64_t FileAccessZip::get_length() const { |