1
0
Fork 0

(svn r18688) -Cleanup: remove some unused code/constants

release/1.0
rubidium 2010-01-02 15:52:41 +00:00
parent fe67e85700
commit 58be174df2
2 changed files with 5 additions and 17 deletions

View File

@ -1189,17 +1189,12 @@ static void SlSaveChunks()
{ {
const ChunkHandler *ch; const ChunkHandler *ch;
const ChunkHandler * const *chsc; const ChunkHandler * const *chsc;
uint p;
for (p = 0; p != CH_NUM_PRI_LEVELS; p++) { for (chsc = _chunk_handlers; (ch = *chsc++) != NULL;) {
for (chsc = _chunk_handlers; (ch = *chsc++) != NULL;) { while (true) {
while (true) { SlSaveChunk(ch);
if (((ch->flags >> CH_PRI_SHL) & (CH_NUM_PRI_LEVELS - 1)) == p) if (ch->flags & CH_LAST) break;
SlSaveChunk(ch); ch++;
if (ch->flags & CH_LAST)
break;
ch++;
}
} }
} }

View File

@ -92,13 +92,6 @@ enum {
CH_TYPE_MASK = 3, CH_TYPE_MASK = 3,
CH_LAST = 8, CH_LAST = 8,
CH_AUTO_LENGTH = 16, CH_AUTO_LENGTH = 16,
CH_PRI_0 = 0 << 4,
CH_PRI_1 = 1 << 4,
CH_PRI_2 = 2 << 4,
CH_PRI_3 = 3 << 4,
CH_PRI_SHL = 4,
CH_NUM_PRI_LEVELS = 4,
}; };
/** VarTypes is the general bitmasked magic type that tells us /** VarTypes is the general bitmasked magic type that tells us