summaryrefslogtreecommitdiff
path: root/newgrf_spritegroup.c
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2006-12-03 17:27:43 +0000
committermatthijs <matthijs@openttd.org>2006-12-03 17:27:43 +0000
commitf3358b9813bbc0d630dc05e3ab24a757f367d954 (patch)
tree8071fe32ed8927c4e25ff2e453aa8297bc8dfe37 /newgrf_spritegroup.c
parent00e9e3e9e6fa790ad8fe1c915f12d47e803ab89e (diff)
downloadopenttd-f3358b9813bbc0d630dc05e3ab24a757f367d954.tar.xz
(svn r7331) - Codechange: Rename all memory pool macro's and types to "old pool", so the new pool implementation can be committed alongside it.
- Codechange: Rename pool.[ch] to oldpool.[ch].
Diffstat (limited to 'newgrf_spritegroup.c')
-rw-r--r--newgrf_spritegroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newgrf_spritegroup.c b/newgrf_spritegroup.c
index 48985a2c5..ef2ca9091 100644
--- a/newgrf_spritegroup.c
+++ b/newgrf_spritegroup.c
@@ -4,14 +4,14 @@
#include "openttd.h"
#include "variables.h"
#include "macros.h"
-#include "pool.h"
+#include "oldpool.h"
#include "newgrf_spritegroup.h"
#include "date.h"
static void SpriteGroupPoolCleanBlock(uint start_item, uint end_item);
static uint _spritegroup_count = 0;
-STATIC_POOL(SpriteGroup, SpriteGroup, 4, 8000, NULL, SpriteGroupPoolCleanBlock)
+STATIC_OLD_POOL(SpriteGroup, SpriteGroup, 4, 8000, NULL, SpriteGroupPoolCleanBlock)
static void DestroySpriteGroup(SpriteGroup *group)
{