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

(cherry picked from commit 88c74aa017)
This commit is contained in:
elasota 2018-09-13 19:10:35 -04:00 committed by Rémi Verschelde
parent a2dae3379d
commit 7ac73098fc
1 changed files with 0 additions and 1 deletions

View File

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