diff options
author | Eugene Sandulenko | 2016-10-02 15:14:05 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-10-02 15:14:05 +0200 |
commit | 5a76ae7ceb61307adb987da10b3df3973ff07594 (patch) | |
tree | f6b0d2a8c717cd1ba5cf40fd2358191b58fd8c43 | |
parent | c141baeb613e8b4a351d73a776d220170d27c38a (diff) | |
download | scummvm-rg350-5a76ae7ceb61307adb987da10b3df3973ff07594.tar.gz scummvm-rg350-5a76ae7ceb61307adb987da10b3df3973ff07594.tar.bz2 scummvm-rg350-5a76ae7ceb61307adb987da10b3df3973ff07594.zip |
FULLPIPE: Fix Grandma positioning in scene14
-rw-r--r-- | engines/fullpipe/scenes/scene14.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/scenes/scene14.cpp b/engines/fullpipe/scenes/scene14.cpp index aea746474b..977f3d95ac 100644 --- a/engines/fullpipe/scenes/scene14.cpp +++ b/engines/fullpipe/scenes/scene14.cpp @@ -481,7 +481,7 @@ bool sceneHandler14_arcadeProcessClick(ExCommand *cmd) { void sceneHandler14_grandmaThrow() { g_vars->scene14_grandma->changeStatics2(ST_GMA_SIT); - MessageQueue *mq = new MessageQueue; + MessageQueue *mq = new MessageQueue(0); ExCommand *ex = new ExCommand(ANI_GRANDMA, 2, 30, 0, 0, 0, 1, 0, 0, 0); ex->_excFlags |= 2; @@ -521,7 +521,7 @@ void sceneHandler14_passToGrandma() { void sceneHandler14_grandmaJumpThrow() { g_vars->scene14_grandma->changeStatics2(ST_GMA_SIT); - MessageQueue *mq = new MessageQueue; + MessageQueue *mq = new MessageQueue(0); ExCommand *ex = new ExCommand(ANI_GRANDMA, 2, 30, 0, 0, 0, 1, 0, 0, 0); ex->_excFlags |= 2; |