mirror of https://github.com/godotengine/godot
Merge pull request #22057 from elasota/fix-compressed-zero-byte
Fix get_8 returning 0 for last byte of compressed files
This commit is contained in:
commit
319a0a319b
|
|
@ -293,7 +293,6 @@ uint8_t FileAccessCompressed::get_8() const {
|
|||
} else {
|
||||
read_block--;
|
||||
at_end = true;
|
||||
ret = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue