[Core] Use unztell64 in FileAccessZIP to ensure 64 bit return

(cherry picked from commit efccebd3db)
This commit is contained in:
Fabio Alessandrelli 2024-04-26 11:48:37 +02:00 committed by Rémi Verschelde
parent cd9f18dbf0
commit 63cecb7875
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ void FileAccessZip::seek_end(int64_t p_position) {
uint64_t FileAccessZip::get_position() const {
ERR_FAIL_COND_V(!zfile, 0);
return unztell(zfile);
return unztell64(zfile);
}
uint64_t FileAccessZip::get_len() const {