Colormap netsync: String format numsectors to UINT32 (thanks buildbot)

This commit is contained in:
mazmazz 2018-09-17 08:05:51 -04:00
parent f3e1d280d0
commit 752a963037

View file

@ -537,7 +537,7 @@ static extracolormap_t *GetNetColormapFromList(UINT32 index)
// entries in net_colormaps. At this point, we don't know
// what the total colormap count is
if (index >= numsectors*3) // if every sector had a unique colormap change AND a fade thinker which has two colormap entries
I_Error("Colormap %d from server is too high for sectors %d", index, numsectors);
I_Error("Colormap %d from server is too high for sectors %d", index, (UINT32)numsectors);
// our index doesn't exist, so just make the entry
for (; i <= index; i++)