diff options
-rw-r--r-- | scumm/actor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 02808e4c45..b1763e523b 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -1572,6 +1572,10 @@ void Actor::remapActorPalette(int r_fact, int g_fact, int b_fact, int threshold) } if (costume < 1 || costume >= _vm->_numCostumes - 1) { + // in FT costume 0 is a normal situation + if (_vm->_gameId == GID_FT && !costume) + return; + warning("Remap actor %d invalid costume %d", number, costume); return; } |