aboutsummaryrefslogtreecommitdiff
path: root/saga/events.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-01-02 14:36:00 +0000
committerTorbjörn Andersson2005-01-02 14:36:00 +0000
commit1bc636aaa676839c6e8fe2d8cc1405f2c3b2393c (patch)
tree46b0e2d6eac5657e8ec2e8bc1724d3f8caf96e31 /saga/events.h
parent96785897790bdf6ff1679e45c7fdf4a98bbce9b6 (diff)
downloadscummvm-rg350-1bc636aaa676839c6e8fe2d8cc1405f2c3b2393c.tar.gz
scummvm-rg350-1bc636aaa676839c6e8fe2d8cc1405f2c3b2393c.tar.bz2
scummvm-rg350-1bc636aaa676839c6e8fe2d8cc1405f2c3b2393c.zip
Fixed a few things in the IHNM intro. Most noticeably I've added an event
for starting animations, which I use to prevent the first animation frame from being drawn too early. svn-id: r16407
Diffstat (limited to 'saga/events.h')
-rw-r--r--saga/events.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/saga/events.h b/saga/events.h
index cd502f153b..0ef5ce0782 100644
--- a/saga/events.h
+++ b/saga/events.h
@@ -64,9 +64,10 @@ enum EVENT_OPS {
// BG events
EVENT_DISPLAY = 1,
// ANIM events
- EVENT_FRAME = 1,
- EVENT_SETFLAG = 2,
- EVENT_CLEARFLAG = 3,
+ // EVENT_PLAY = 1, // reused
+ EVENT_FRAME = 2,
+ EVENT_SETFLAG = 3,
+ EVENT_CLEARFLAG = 4,
// MUISC & SOUND events
EVENT_PLAY = 1,
EVENT_STOP = 2,