aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/fullpipe/scenes/scene32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/scenes/scene32.cpp b/engines/fullpipe/scenes/scene32.cpp
index 26fb5e12fe..c93e888e51 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);
@@ -171,7 +171,7 @@ void sceneHandler32_startFlagRight() {
void sceneHandler32_trySit(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);