diff options
-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; |