aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--costume.cpp2
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);
}
}