1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

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

This commit is contained in:
Fabio Alessandrelli
2024-04-26 11:48:37 +02:00
parent 11d3768132
commit efccebd3db

View File

@@ -277,7 +277,7 @@ void FileAccessZip::seek_end(int64_t p_position) {
uint64_t FileAccessZip::get_position() const { uint64_t FileAccessZip::get_position() const {
ERR_FAIL_NULL_V(zfile, 0); ERR_FAIL_NULL_V(zfile, 0);
return unztell(zfile); return unztell64(zfile);
} }
uint64_t FileAccessZip::get_length() const { uint64_t FileAccessZip::get_length() const {