aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe
diff options
context:
space:
mode:
authorEugene Sandulenko2015-01-04 19:16:34 +0100
committerEugene Sandulenko2015-01-04 19:16:34 +0100
commit308bfe3b9cfda6ae2dd0558fcecfaa628e816b60 (patch)
tree8621d7073bcd051243ff3ad77966c7e1c1c83ac2 /engines/fullpipe
parentc3def28b9964066165b8627d0129578504734ab2 (diff)
downloadscummvm-rg350-308bfe3b9cfda6ae2dd0558fcecfaa628e816b60.tar.gz
scummvm-rg350-308bfe3b9cfda6ae2dd0558fcecfaa628e816b60.tar.bz2
scummvm-rg350-308bfe3b9cfda6ae2dd0558fcecfaa628e816b60.zip
FULLPIPE: Remove redundant check
Diffstat (limited to 'engines/fullpipe')
-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 e9d3a37efd..df005950d2 100644
--- a/engines/fullpipe/scenes/scene16.cpp
+++ b/engines/fullpipe/scenes/scene16.cpp
@@ -182,7 +182,7 @@ void sceneHandler16_fillMug() {
mq = new MessageQueue(g_fp->_currentScene->getMessageQueueById(QU_SC16_BOYOUT), 0, 1);
mq->replaceKeyCode(-1, g_vars->scene16_walkingBoy->_okeyCode);
- if (!mq || mq->chain(g_vars->scene16_walkingBoy))
+ if (mq->chain(g_vars->scene16_walkingBoy))
return;
} else {
if (!g_vars->scene16_walkingGirl)