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

Fixed EOF flag not resetting on seek back

This commit is contained in:
TGRCDev
2019-08-05 18:20:18 -07:00
parent fa35a73f0a
commit c6f7015bca

View File

@@ -208,7 +208,8 @@ void FileAccessCompressed::seek(size_t p_position) {
if (p_position == read_total) {
at_end = true;
} else {
at_end = false;
read_eof = false;
int block_idx = p_position / block_size;
if (block_idx != read_block) {