IMAGE: Fix use of and keyword

This commit is contained in:
Matthew Duggan 2020-05-12 22:42:47 +09:00
parent 1c7e13fd22
commit 2ac6579236

View File

@ -91,7 +91,7 @@ const Graphics::Surface *JYV1Decoder::decodeFrame(Common::SeekableReadStream &st
while (!cmdBitStream.eos()) {
uint32 idx = cmdBitStream.getBits(4);
uint32 blocksize = BASE_LEN[idx];
if (idx != 0 and idx != 8) {
if (idx != 0 && idx != 8) {
blocksize += cmdBitStream.getBits(FINE_LEN_BITS[idx]);
}
if (skipping) {