diff options
author | Filippos Karapetis | 2010-07-14 02:12:03 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-07-14 02:12:03 +0000 |
commit | b5d4056e9c0a30d73c5226857d579464d3c2be5e (patch) | |
tree | 678aac4d7be39a71cfc56bb4b4c9b52e5b675ed4 /engines | |
parent | 20e672e34dc7f4923fe9b107acbab6439c2fef08 (diff) | |
download | scummvm-rg350-b5d4056e9c0a30d73c5226857d579464d3c2be5e.tar.gz scummvm-rg350-b5d4056e9c0a30d73c5226857d579464d3c2be5e.tar.bz2 scummvm-rg350-b5d4056e9c0a30d73c5226857d579464d3c2be5e.zip |
Typos
svn-id: r50863
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/kernel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/kernel.h b/engines/sci/engine/kernel.h index d63eeaa468..3bb5827d45 100644 --- a/engines/sci/engine/kernel.h +++ b/engines/sci/engine/kernel.h @@ -100,12 +100,12 @@ struct SelectorCache; // from selector.h enum { SIG_TYPE_NULL = 0x01, // may be 0:0 [0] SIG_TYPE_INTEGER = 0x02, // may be 0:* [i], automatically also allows null - SIG_TYPE_UNINITIALIZED = 0x04, // may be FFFF:* -> not allowable, only used for comparsion + SIG_TYPE_UNINITIALIZED = 0x04, // may be FFFF:* -> not allowable, only used for comparison SIG_TYPE_OBJECT = 0x08, // may be object [o] SIG_TYPE_REFERENCE = 0x10, // may be reference [r] SIG_TYPE_LIST = 0x20, // may be list [l] SIG_TYPE_NODE = 0x40, // may be node [n] - SIG_TYPE_ERROR = 0x80, // happens, when there is a identification error - only used for comparsion + SIG_TYPE_ERROR = 0x80, // happens, when there is a identification error - only used for comparison SIG_IS_INVALID = 0x100, // ptr is invalid [!] -> invalid offset SIG_IS_OPTIONAL = 0x200, // is optional SIG_NEEDS_MORE = 0x400, // needs at least one additional parameter following |