1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-03 22:59:30 +00:00

(svn r7063) static

This commit is contained in:
tron
2006-11-05 08:01:47 +00:00
parent e496c5a37c
commit fb878e9345

View File

@@ -13,7 +13,7 @@ static void SpriteGroupPoolCleanBlock(uint start_item, uint end_item);
static uint _spritegroup_count = 0;
STATIC_POOL(SpriteGroup, SpriteGroup, 4, 8000, NULL, SpriteGroupPoolCleanBlock);
void DestroySpriteGroup(SpriteGroup *group)
static void DestroySpriteGroup(SpriteGroup *group)
{
/* Free dynamically allocated memory */
/* XXX Cast away the consts due to MSVC being buggy... */