diff options
author | Martin Kiewitz | 2010-07-05 14:46:09 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-05 14:46:09 +0000 |
commit | 63c439a858b96adbfb439651047b293d66947f19 (patch) | |
tree | 1e7dee72453274737767c901a2b9b415abbc4a00 | |
parent | 5527882daa02eb98f86f7a9904c588ba93821fe1 (diff) | |
download | scummvm-rg350-63c439a858b96adbfb439651047b293d66947f19.tar.gz scummvm-rg350-63c439a858b96adbfb439651047b293d66947f19.tar.bz2 scummvm-rg350-63c439a858b96adbfb439651047b293d66947f19.zip |
SCI: fix compilation issues from r50678
svn-id: r50679
-rw-r--r-- | engines/sci/engine/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kernel.h b/engines/sci/engine/kernel.h index ef587194d6..a0b91b8601 100644 --- a/engines/sci/engine/kernel.h +++ b/engines/sci/engine/kernel.h @@ -107,7 +107,7 @@ enum { SIG_TYPE_NODE = 0x80, // may be node [n] SIG_IS_OPTIONAL = 0x100, // is optional SIG_NEEDS_MORE = 0x200, // needs at least one additional parameter following - SIG_MORE_MAY_FOLLOW = 0x400, // may have more parameters of the same type following + SIG_MORE_MAY_FOLLOW = 0x400 // may have more parameters of the same type following }; // this does not include SIG_TYPE_UNINITIALIZED, because we can not allow uninitialized values anywhere |