(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

@ -23,11 +23,11 @@ uint _sprite_cache_size = 4;
struct SpriteCache { struct SpriteCache {
void *ptr; void *ptr;
uint32 id; uint32 id;
uint32 file_pos; uint32 file_pos;
uint16 file_slot; uint16 file_slot;
int16 lru; int16 lru;
}; };
@ -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++) {