diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-26 15:13:44 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-26 15:13:44 +0200 |
commit | 6118592c6d88350d01f74faff6fd49754f84a7d0 (patch) | |
tree | 291a86d5b44449a85015ffcb72e085477525c56b | |
parent | 1c584ec9e0a15658d5beae8e66d4494e91829c5b (diff) | |
parent | efccebd3db90d7baf0947cd02612ab987ab87868 (diff) | |
download | redot-engine-6118592c6d88350d01f74faff6fd49754f84a7d0.tar.gz |
Merge pull request #91210 from Faless/fix/core_unztell64
[Core] Use unztell64 in FileAccessZIP to ensure 64 bit return
-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 { |