1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Fix FileAccessCompressed::get_8 returning 0 for the last byte of a file

This commit is contained in:
elasota
2018-09-13 19:10:35 -04:00
parent 06c8b5a4ff
commit 88c74aa017

View File

@@ -293,7 +293,6 @@ uint8_t FileAccessCompressed::get_8() const {
} else {
read_block--;
at_end = true;
ret = 0;
}
}