(svn r3297) Staticise

This commit is contained in:
tron
2005-12-14 06:20:23 +00:00
parent ae624ee690
commit 9822b4d755
12 changed files with 24 additions and 21 deletions

View File

@@ -1276,7 +1276,7 @@ static void VehicleChangeInfo(byte *buf, int len)
* @param value The value that was used to represent this callback result
* @return A spritegroup representing that callback result
*/
SpriteGroup *NewCallBackResultSpriteGroup(uint16 value)
static SpriteGroup* NewCallBackResultSpriteGroup(uint16 value)
{
SpriteGroup *group = calloc(1, sizeof(*group));
@@ -1300,7 +1300,7 @@ SpriteGroup *NewCallBackResultSpriteGroup(uint16 value)
* @param sprites The number of sprites per set.
* @return A spritegroup representing the sprite number result.
*/
SpriteGroup *NewResultSpriteGroup(uint16 value, byte sprites)
static SpriteGroup* NewResultSpriteGroup(uint16 value, byte sprites)
{
SpriteGroup *group = calloc(1, sizeof(*group));
group->type = SGT_RESULT;