aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2014-01-10 21:48:11 +0200
committerEugene Sandulenko2014-01-10 21:48:11 +0200
commit63a51839ce0bf424b236ed969ef3c295c80e2e98 (patch)
tree605fb473a11b70e8a0beadac0b691a6e1f1d4746
parentf710418ae5dbbc8cda485ab493ea6f6b596ade72 (diff)
downloadscummvm-rg350-63a51839ce0bf424b236ed969ef3c295c80e2e98.tar.gz
scummvm-rg350-63a51839ce0bf424b236ed969ef3c295c80e2e98.tar.bz2
scummvm-rg350-63a51839ce0bf424b236ed969ef3c295c80e2e98.zip
FULLPIPE: Fix warning
-rw-r--r--engines/fullpipe/scenes/scene32.cpp2
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);