Skip to content

Commit

Permalink
Merge pull request godotengine#91210 from Faless/fix/core_unztell64
Browse files Browse the repository at this point in the history
[Core] Use unztell64 in FileAccessZIP to ensure 64 bit return
  • Loading branch information
akien-mga committed Apr 26, 2024
2 parents 1c584ec + efccebd commit 6118592
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 6118592

Please sign in to comment.