(svn r8058) -Codechange: Replaced an occurence of (uint32)-1 by UINT_MAX

This commit is contained in:
celestar 2007-01-11 12:47:42 +00:00
parent 6a256ff2df
commit 8694ad9e0d
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ static inline uint32 GetVariable(const ResolverObject *object, byte variable, by
case 0x10: return object->callback_param1;
case 0x11: return 0;
case 0x18: return object->callback_param2;
case 0x1A: return (uint32)-1;
case 0x1A: return UINT_MAX;
case 0x1B: return GB(_display_opt, 0, 6);
case 0x1C: return object->last_value;
case 0x20: return _opt.landscape == LT_HILLY ? _opt.snow_line : 0xFF;