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 95c53f476a..ae88294950 100644
--- a/costume.cpp
+++ b/costume.cpp
@@ -726,7 +726,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 <0x79)
+ if ( !(_vm->_features & GF_OLD256) || code <0x79)
return mainRoutine(a, slot, code);
}
#endif