diff options
author | Eugene Sandulenko | 2014-01-10 21:48:11 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-01-10 21:48:11 +0200 |
commit | 63a51839ce0bf424b236ed969ef3c295c80e2e98 (patch) | |
tree | 605fb473a11b70e8a0beadac0b691a6e1f1d4746 | |
parent | f710418ae5dbbc8cda485ab493ea6f6b596ade72 (diff) | |
download | scummvm-rg350-63a51839ce0bf424b236ed969ef3c295c80e2e98.tar.gz scummvm-rg350-63a51839ce0bf424b236ed969ef3c295c80e2e98.tar.bz2 scummvm-rg350-63a51839ce0bf424b236ed969ef3c295c80e2e98.zip |
FULLPIPE: Fix warning
-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); |