summaryrefslogtreecommitdiff
path: root/oldloader.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-10-28 11:43:56 +0000
committertron <tron@openttd.org>2006-10-28 11:43:56 +0000
commit470a054c061bbe8d3ec9160a52f79f6314bfa86a (patch)
tree126e3edad5bbe386cc2ee8a7a851f576cf1053b8 /oldloader.c
parent18e56bea7fab7b7c3c57fb53265b049d6c08e8a9 (diff)
downloadopenttd-470a054c061bbe8d3ec9160a52f79f6314bfa86a.tar.xz
(svn r6982) Use the pool macros for the Sign pool
Diffstat (limited to 'oldloader.c')
-rw-r--r--oldloader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/oldloader.c b/oldloader.c
index 65a03767a..d9faba895 100644
--- a/oldloader.c
+++ b/oldloader.c
@@ -1245,7 +1245,7 @@ static const OldChunks sign_chunk[] = {
static bool LoadOldSign(LoadgameState *ls, int num)
{
- if (!AddBlockIfNeeded(&_sign_pool, num))
+ if (!AddBlockIfNeeded(&_Sign_pool, num))
error("Signs: failed loading savegame: too many signs");
return LoadChunk(ls, GetSign(num), sign_chunk);