diff options
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/scenes/scene32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene32.cpp b/engines/fullpipe/scenes/scene32.cpp index 8d462fbc6f..26fb5e12fe 100644 --- a/engines/fullpipe/scenes/scene32.cpp +++ b/engines/fullpipe/scenes/scene32.cpp @@ -120,7 +120,7 @@ void sceneHandler32_startCactus() { void sceneHandler32_spin(ExCommand *cmd) { MessageQueue *mq = g_fp->_globalMessageQueueList->getMessageQueueById(cmd->_parId); - if (!mq || !mq->getCount() <= 0) + if (!mq || mq->getCount() <= 0) return; ExCommand *ex = mq->getExCommandByIndex(0); |