oh, nPlaneVerts is a size_t?, well, then we need to use sizeu#()

This commit is contained in:
Alam Ed Arias 2015-01-10 17:27:24 -05:00
parent f5cd1d5ebc
commit e28882a56d
1 changed files with 1 additions and 1 deletions

View File

@ -2651,7 +2651,7 @@ static void HWR_RenderPolyObjectPlane(polyobj_t *polysector, fixed_t fixedheight
if (nrPlaneVerts > UINT16_MAX) // FIXME: exceeds plVerts size
{
CONS_Debug(DBG_RENDER, "polygon size of %d exceeds max value of %d vertices\n", nrPlaneVerts, UINT16_MAX);
CONS_Debug(DBG_RENDER, "polygon size of %s exceeds max value of %d vertices\n", sizeu1(nrPlaneVerts), UINT16_MAX);
return;
}