Fix compiler warning about sign comparison

This commit is contained in:
est31 2015-05-13 00:04:30 +02:00
parent ecc514f11b
commit b70e67df8c
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ bool read_schematic_def(lua_State *L, int index,
//// Get Y-slice probability values (if present)
schem->slice_probs = new u8[size.Y];
for (i = 0; i != size.Y; i++)
for (i = 0; i != (u32) size.Y; i++)
schem->slice_probs[i] = MTSCHEM_PROB_ALWAYS;
lua_getfield(L, index, "yslice_prob");