Skip to content

Commit

Permalink
[Core] Use unztell64 in FileAccessZIP to ensure 64 bit return
Browse files Browse the repository at this point in the history
  • Loading branch information
Faless committed Apr 26, 2024
1 parent 11d3768 commit efccebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/io/file_access_zip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit efccebd

Please sign in to comment.