Skip to content

Commit efccebd

Browse files
committed
[Core] Use unztell64 in FileAccessZIP to ensure 64 bit return
1 parent 11d3768 commit efccebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/io/file_access_zip.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ void FileAccessZip::seek_end(int64_t p_position) {
277277

278278
uint64_t FileAccessZip::get_position() const {
279279
ERR_FAIL_NULL_V(zfile, 0);
280-
return unztell(zfile);
280+
return unztell64(zfile);
281281
}
282282

283283
uint64_t FileAccessZip::get_length() const {

0 commit comments

Comments
 (0)