aboutsummaryrefslogtreecommitdiff
path: root/saga/saga.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2004-08-01 13:34:20 +0000
committerEugene Sandulenko2004-08-01 13:34:20 +0000
commitea694ffd68a5071fda937b3d23d6796c3abb3ba3 (patch)
treeef9034f15029695f4c7673106742dce365878c0b /saga/saga.cpp
parentf97621d6e4d620212c5b7071ae8841d0e361709b (diff)
downloadscummvm-rg350-ea694ffd68a5071fda937b3d23d6796c3abb3ba3.tar.gz
scummvm-rg350-ea694ffd68a5071fda937b3d23d6796c3abb3ba3.tar.bz2
scummvm-rg350-ea694ffd68a5071fda937b3d23d6796c3abb3ba3.zip
Pass SagaEngine object to Anim and ActionMap objects
svn-id: r14422
Diffstat (limited to 'saga/saga.cpp')
-rw-r--r--saga/saga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/saga.cpp b/saga/saga.cpp
index 2f763b69dd..e7a36a57f4 100644
--- a/saga/saga.cpp
+++ b/saga/saga.cpp
@@ -154,8 +154,8 @@ void SagaEngine::go() {
EVENT_Init();
FONT_Init();
SPRITE_Init();
- _anim = new Anim();
- _actionMap = new ActionMap();
+ _anim = new Anim(this);
+ _actionMap = new ActionMap(this);
OBJECTMAP_Init();
ISOMAP_Init();
SCRIPT_Init();