Merge pull request #91210 from Faless/fix/core_unztell64

[Core] Use unztell64 in FileAccessZIP to ensure 64 bit return
This commit is contained in:
Rémi Verschelde 2024-04-26 15:13:44 +02:00
commit 6118592c6d
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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 {