(svn r1475) Fix some more signed/unsigned comparison warnings

This commit is contained in:
tron
2005-01-10 22:14:35 +00:00
parent 46d0e2f892
commit 05a3a83b6c
5 changed files with 11 additions and 8 deletions

View File

@@ -1186,7 +1186,7 @@ void ViewportDoDraw(const ViewPort *vp, int left, int top, int right, int bottom
// This assert should never happen (because the length of the parent_list
// is checked)
assert(vd.parent_list - parent_list <= lengthof(parent_list));
assert(vd.parent_list <= endof(parent_list));
if (vd.first_tile != NULL)
ViewportDrawTileSprites(vd.first_tile);