diff options
| -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 | 
