1
0
Fork 0

(svn r12436) -Cleanup: minor coding style

release/0.7
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)); assert(!(next->size & S_FREE_MASK));
/* If the next block is the sentinel block, we can safely return */ /* If the next block is the sentinel block, we can safely return */
if (next->size == 0) if (next->size == 0) break;
break;
/* Locate the sprite belonging to the next pointer. */ /* Locate the sprite belonging to the next pointer. */
for (i = 0; GetSpriteCache(i)->ptr != next->data; i++) { for (i = 0; GetSpriteCache(i)->ptr != next->data; i++) {