(svn r3365) Staticise 36 functions

This commit is contained in:
tron
2006-01-05 12:40:50 +00:00
parent e588f86bb3
commit 318fe153eb
37 changed files with 68 additions and 68 deletions

View File

@@ -415,6 +415,9 @@ static const TileIndexDiffC _roadblock_tileadd[] = {
{ 0, 1}
};
static bool GrowTown(Town *t);
static void TownTickHandler(Town *t)
{
if (t->flags12&1) {
@@ -762,7 +765,7 @@ static int GenRandomRoadBits(void)
// Grow the town
// Returns true if a house was built, or no if the build failed.
bool GrowTown(Town *t)
static bool GrowTown(Town *t)
{
TileIndex tile;
const TileIndexDiffC *ptr;