diff options
-rw-r--r-- | costume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/costume.cpp b/costume.cpp index 80a8e3763c..35827ceb0b 100644 --- a/costume.cpp +++ b/costume.cpp @@ -727,7 +727,7 @@ byte CostumeRenderer::drawOneSlot(Actor *a, int slot) { _srcptr = _loaded._ptr + READ_LE_UINT16(_frameptr + code*2); if (code != 0x7B) { - if(_vm->_features & GF_OLD256 && code < 0x78) + if ( !(_vm->_features & GF_OLD256) || code <0x79) return mainRoutine(a, slot, code); } } |