aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2014-01-06 22:41:41 +0200
committerEugene Sandulenko2014-01-06 23:24:36 +0200
commit48fef827a5093495e97d58b6e7842d882587960c (patch)
treef7706f19eb05a75d9ce2b4f16e9ffd28e05cc662
parent2b1d7f1eb75722819cbc7e65f33644436c4b1ed7 (diff)
downloadscummvm-rg350-48fef827a5093495e97d58b6e7842d882587960c.tar.gz
scummvm-rg350-48fef827a5093495e97d58b6e7842d882587960c.tar.bz2
scummvm-rg350-48fef827a5093495e97d58b6e7842d882587960c.zip
FULLPIPE: Remove redundant check. CID 1148380
-rw-r--r--engines/fullpipe/scenes/scene16.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene16.cpp b/engines/fullpipe/scenes/scene16.cpp
index a280273e6a..79d1179ba3 100644
--- a/engines/fullpipe/scenes/scene16.cpp
+++ b/engines/fullpipe/scenes/scene16.cpp
@@ -191,7 +191,7 @@ void sceneHandler16_fillMug() {
mq = new MessageQueue(g_fp->_currentScene->getMessageQueueById(QU_SC16_GIRLOUT), 0, 1);
mq->replaceKeyCode(-1, g_vars->scene16_walkingGirl->_okeyCode);
- if (mq->chain(g_vars->scene16_walkingGirl) || !mq)
+ if (mq->chain(g_vars->scene16_walkingGirl))
return;
}
delete mq;