diff -r 69dfaadb5c3c -r 4009d092b306 oldloader.c --- a/oldloader.c Fri Jun 09 20:06:02 2006 +0000 +++ b/oldloader.c Sat Jun 10 08:37:41 2006 +0000 @@ -188,12 +188,11 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks) { const OldChunks *chunk = chunks; - byte *ptr; byte *base_ptr = base; - uint i; while (chunk->type != OC_END) { - ptr = chunk->ptr; + byte* ptr = chunk->ptr; + uint i; for (i = 0; i < chunk->amount; i++) { if (ls->failed) return false;