aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMartin Kiewitz2009-10-16 19:35:55 +0000
committerMartin Kiewitz2009-10-16 19:35:55 +0000
commitf6716df853b70b3afa670d719da0f6bef947ea62 (patch)
treefa68adf852d8eca557b53edbdd451033bc3f8212 /engines
parent2ada85b6cc1331036cb0a24b7d085585ce30776d (diff)
downloadscummvm-rg350-f6716df853b70b3afa670d719da0f6bef947ea62.tar.gz
scummvm-rg350-f6716df853b70b3afa670d719da0f6bef947ea62.tar.bz2
scummvm-rg350-f6716df853b70b3afa670d719da0f6bef947ea62.zip
SCI/newgui: defined unused signal flags
svn-id: r45174
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/gui/gui_animate.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/sci/gui/gui_animate.h b/engines/sci/gui/gui_animate.h
index 6db19db22a..1f976b9e84 100644
--- a/engines/sci/gui/gui_animate.h
+++ b/engines/sci/gui/gui_animate.h
@@ -40,6 +40,11 @@ enum {
SCI_ANIMATE_SIGNAL_FORCEUPDATE = 0x0040,
SCI_ANIMATE_SIGNAL_REMOVEVIEW = 0x0080,
SCI_ANIMATE_SIGNAL_FROZEN = 0x0100,
+ SCI_ANIMATE_SIGNAL_EXTRAACTOR = 0x0200, // unused by us, defines all actors that may be included into the background if speed to slow
+ SCI_ANIMATE_SIGNAL_BLOCKED = 0x0400, // unused by us, defines an actor that tried to move but was blocked
+ SCI_ANIMATE_SIGNAL_FIXEDLOOP = 0x0800, // unused by us
+ SCI_ANIMATE_SIGNAL_FIXEDCEL = 0x1000, // unused by us
+ SCI_ANIMATE_SIGNAL_IGNOREHORIZON = 0x2000, // unused by us, defines actor that can ignore horizon
SCI_ANIMATE_SIGNAL_IGNOREACTOR = 0x4000,
SCI_ANIMATE_SIGNAL_DISPOSEME = 0x8000
};