mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
IMAGE: Fix use of and keyword
This commit is contained in:
parent
1c7e13fd22
commit
2ac6579236
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user