aboutsummaryrefslogtreecommitdiff
path: root/saga/events.cpp
diff options
context:
space:
mode:
authorJonathan Gray2004-07-31 13:34:43 +0000
committerJonathan Gray2004-07-31 13:34:43 +0000
commit59c88e428b044914fefc48fa6c7bc1e3ac569de7 (patch)
tree5ff5ddc47984d602a02ac40a8e22d8221f8e9f1c /saga/events.cpp
parentd53a852c16c45bc75861ce793171cd37436e3ad2 (diff)
downloadscummvm-rg350-59c88e428b044914fefc48fa6c7bc1e3ac569de7.tar.gz
scummvm-rg350-59c88e428b044914fefc48fa6c7bc1e3ac569de7.tar.bz2
scummvm-rg350-59c88e428b044914fefc48fa6c7bc1e3ac569de7.zip
merge animation.h and animation_mod.h into a class
svn-id: r14388
Diffstat (limited to 'saga/events.cpp')
-rw-r--r--saga/events.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/events.cpp b/saga/events.cpp
index ad57acf43e..069553e73a 100644
--- a/saga/events.cpp
+++ b/saga/events.cpp
@@ -29,7 +29,7 @@
#include "yslib.h"
-#include "animation_mod.h"
+#include "animation.h"
#include "console_mod.h"
#include "scene_mod.h"
#include "gfx_mod.h"
@@ -270,7 +270,7 @@ static int HandleOneShot(R_EVENT *event) {
case R_ANIM_EVENT:
switch (event->op) {
case EVENT_FRAME:
- ANIM_Play(event->param, event->time);
+ _vm->_anim->play(event->param, event->time);
break;
default:
break;