summaryrefslogtreecommitdiff
path: root/oldloader.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-02-06 18:41:15 +0000
committertruelight <truelight@openttd.org>2005-02-06 18:41:15 +0000
commitbedc63d75db67d5907d92c8d93434656ac985574 (patch)
tree04fddd5380cb850292bcb5aec2898442580e74e2 /oldloader.c
parentd48261aa23980e8d73a47f7bee5414ddeba33dea (diff)
downloadopenttd-bedc63d75db67d5907d92c8d93434656ac985574.tar.xz
(svn r1829) -Fix: fixed some compiler warnings (tnx to Tron for the Makefile-flag)
Diffstat (limited to 'oldloader.c')
-rw-r--r--oldloader.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/oldloader.c b/oldloader.c
index 2e3e3ae4c..51a7cd806 100644
--- a/oldloader.c
+++ b/oldloader.c
@@ -164,6 +164,7 @@ 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) {
@@ -238,7 +239,7 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
}
/* Sanity check */
- assert(base != NULL || chunk->ptr != NULL);
+ assert(base_ptr != NULL || chunk->ptr != NULL);
/* Writing to the var: bit 8 till 15 have the VAR */
switch (((chunk->type >> 8) & 0xFF) << 8) {
@@ -248,7 +249,7 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
*(int8 *)ptr = res & 0xFF;
ptr++;
} else
- *(int8 *)(base + chunk->offset) = res & 0xFF;
+ *(int8 *)(base_ptr + chunk->offset) = res & 0xFF;
break;
case OC_VAR_U8:
@@ -257,7 +258,7 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
*(uint8 *)ptr = res & 0xFF;
ptr++;
} else
- *(uint8 *)(base + chunk->offset) = res & 0xFF;
+ *(uint8 *)(base_ptr + chunk->offset) = res & 0xFF;
break;
case OC_VAR_U16:
@@ -266,7 +267,7 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
*(uint16 *)ptr = res & 0xFFFF;
ptr += 2;
} else
- *(uint16 *)(base + chunk->offset) = res & 0xFFFF;
+ *(uint16 *)(base_ptr + chunk->offset) = res & 0xFFFF;
break;
case OC_VAR_I16:
@@ -275,7 +276,7 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
*(int16 *)ptr = res & 0xFFFF;
ptr += 2;
} else
- *(int16 *)(base + chunk->offset) = res & 0xFFFF;
+ *(int16 *)(base_ptr + chunk->offset) = res & 0xFFFF;
break;
case OC_VAR_U32:
@@ -284,7 +285,7 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
*(uint32 *)ptr = res;
ptr += 4;
} else
- *(uint32 *)(base + chunk->offset) = res;
+ *(uint32 *)(base_ptr + chunk->offset) = res;
break;
case OC_VAR_I32:
@@ -293,7 +294,7 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
*(int32 *)ptr = res;
ptr += 4;
} else
- *(int32 *)(base + chunk->offset) = res;
+ *(int32 *)(base_ptr + chunk->offset) = res;
break;
case OC_VAR_I64:
@@ -302,7 +303,7 @@ static bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
*(int64 *)ptr = res;
ptr += 8;
} else
- *(int64 *)(base + chunk->offset) = res;
+ *(int64 *)(base_ptr + chunk->offset) = res;
break;
}
}