- Fix another signed/unsigned warning from GCC.

SVN r3458 (trunk)
This commit is contained in:
Randy Heit 2012-03-20 02:22:17 +00:00
parent 0552f04e4c
commit 7045bfd19f
1 changed files with 1 additions and 1 deletions

View File

@ -2093,7 +2093,7 @@ DEFINE_CLASS_PROPERTY_PREFIX(player, colorset, ISIIIiiiiiiiiiiiiiiiiiiiiiiii, Pl
PROP_INT_PARM(first_color, start+2); PROP_INT_PARM(first_color, start+2);
PROP_INT_PARM(last_color, start+3); PROP_INT_PARM(last_color, start+3);
int extra = color.NumExtraRanges++; int extra = color.NumExtraRanges++;
assert (extra < countof(color.Extra)); assert (extra < (int)countof(color.Extra));
color.Extra[extra].RangeStart = range_start; color.Extra[extra].RangeStart = range_start;
color.Extra[extra].RangeEnd = range_end; color.Extra[extra].RangeEnd = range_end;