diff options
Diffstat (limited to 'engines/fullpipe/behavior.cpp')
| -rw-r--r-- | engines/fullpipe/behavior.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/engines/fullpipe/behavior.cpp b/engines/fullpipe/behavior.cpp index 2c0cba8f84..db91643fa5 100644 --- a/engines/fullpipe/behavior.cpp +++ b/engines/fullpipe/behavior.cpp @@ -173,7 +173,9 @@ void BehaviorManager::updateStaticAniBehavior(StaticANIObject &ani, int delay, c  	if (mq) {  		mq->setParamInt(-1, ani._odelay); -		mq->chain(&ani); +		if (!mq->chain(&ani)) { +			g_fp->_globalMessageQueueList->deleteQueueById(mq->_id); +		}  	}  } | 
