diff options
-rw-r--r-- | engines/mads/animation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/mads/animation.cpp b/engines/mads/animation.cpp index dd7977225f..b2c257332e 100644 --- a/engines/mads/animation.cpp +++ b/engines/mads/animation.cpp @@ -188,7 +188,8 @@ void Animation::free() { // Remove any kernel messages in use by the animation for (uint i = 0; i < _messages.size(); ++i) { int msgIndex = _messages[i]._kernelMsgIndex; - scene._kernelMessages.remove(msgIndex); + if (msgIndex >= 0) + scene._kernelMessages.remove(msgIndex); } _resetFlag = false; |