diff options
Diffstat (limited to 'engines/fullpipe/scenes/scene16.cpp')
-rw-r--r-- | engines/fullpipe/scenes/scene16.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/scenes/scene16.cpp b/engines/fullpipe/scenes/scene16.cpp index a280273e6a..b1e261287a 100644 --- a/engines/fullpipe/scenes/scene16.cpp +++ b/engines/fullpipe/scenes/scene16.cpp @@ -121,7 +121,7 @@ int scene16_updateCursor() { } void sceneHandler16_laughSound() { - int snd; + int snd = SND_16_035; switch (g_vars->scene16_sound) { case SND_16_034: @@ -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; |