(svn r12436) -Cleanup: minor coding style

This commit is contained in:
peter1138 2008-03-26 19:18:30 +00:00
parent 989f967509
commit f9e7b70f91
1 changed files with 4 additions and 5 deletions

View File

@ -338,8 +338,7 @@ static void CompactSpriteCache()
assert(!(next->size & S_FREE_MASK));
/* If the next block is the sentinel block, we can safely return */
if (next->size == 0)
break;
if (next->size == 0) break;
/* Locate the sprite belonging to the next pointer. */
for (i = 0; GetSpriteCache(i)->ptr != next->data; i++) {