aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/fullpipe.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-12-11 22:54:15 +0200
committerEugene Sandulenko2013-12-11 23:17:45 +0200
commit8caec7691cf625baba382e425fdcf1bee9e7d17c (patch)
treef985fad03dcd49040d7ea9c17791e0355baf5581 /engines/fullpipe/fullpipe.cpp
parentedbf2d49fba3041b8c29c1a256b570512fd44f40 (diff)
downloadscummvm-rg350-8caec7691cf625baba382e425fdcf1bee9e7d17c.tar.gz
scummvm-rg350-8caec7691cf625baba382e425fdcf1bee9e7d17c.tar.bz2
scummvm-rg350-8caec7691cf625baba382e425fdcf1bee9e7d17c.zip
FULLPIPE: Implement StaticANIObject::changeStatics2()
Diffstat (limited to 'engines/fullpipe/fullpipe.cpp')
-rw-r--r--engines/fullpipe/fullpipe.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/fullpipe/fullpipe.cpp b/engines/fullpipe/fullpipe.cpp
index a254ea642d..970af423ae 100644
--- a/engines/fullpipe/fullpipe.cpp
+++ b/engines/fullpipe/fullpipe.cpp
@@ -35,6 +35,7 @@
#include "fullpipe/input.h"
#include "fullpipe/scenes.h"
#include "fullpipe/floaters.h"
+#include "fullpipe/motion.h"
#include "fullpipe/console.h"
namespace Fullpipe {
@@ -100,6 +101,7 @@ FullpipeEngine::FullpipeEngine(OSystem *syst, const ADGameDescription *gameDesc)
_scene2 = 0;
_movTable = 0;
_floaters = 0;
+ _mgm = 0;
_globalMessageQueueList = 0;
_messageHandlers = 0;
@@ -168,6 +170,7 @@ void FullpipeEngine::initialize() {
_sceneRect.bottom = 599;
_floaters = new Floaters;
+ _mgm = new MGM;
}
Common::Error FullpipeEngine::run() {