summaryrefslogtreecommitdiff
path: root/waypoint.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-12-14 06:20:23 +0000
committertron <tron@openttd.org>2005-12-14 06:20:23 +0000
commit9822b4d755ba1bcc126643cd21a2c4362a4026d9 (patch)
tree5042ddfac1e3c26fb99ea38d0bd4b90959a93d61 /waypoint.c
parentae624ee69045c23e05396740fb2a3f6cd09809ff (diff)
downloadopenttd-9822b4d755ba1bcc126643cd21a2c4362a4026d9.tar.xz
(svn r3297) Staticise
Diffstat (limited to 'waypoint.c')
-rw-r--r--waypoint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/waypoint.c b/waypoint.c
index 53844a609..8d323eb3a 100644
--- a/waypoint.c
+++ b/waypoint.c
@@ -41,7 +41,7 @@ static void WaypointPoolNewBlock(uint start_item)
MemoryPool _waypoint_pool = { "Waypoints", WAYPOINT_POOL_MAX_BLOCKS, WAYPOINT_POOL_BLOCK_SIZE_BITS, sizeof(Waypoint), &WaypointPoolNewBlock, 0, 0, NULL };
/* Create a new waypoint */
-Waypoint *AllocateWaypoint(void)
+static Waypoint* AllocateWaypoint(void)
{
Waypoint *wp;
@@ -72,7 +72,7 @@ void UpdateWaypointSign(Waypoint *wp)
}
/* Redraw the sign of a waypoint */
-void RedrawWaypointSign(Waypoint *wp)
+static void RedrawWaypointSign(const Waypoint* wp)
{
MarkAllViewportsDirty(
wp->sign.left - 6,
@@ -93,7 +93,7 @@ void UpdateAllWaypointSigns(void)
}
/* Set the default name for a waypoint */
-void MakeDefaultWaypointName(Waypoint *wp)
+static void MakeDefaultWaypointName(Waypoint* wp)
{
Waypoint *local_wp;
bool used_waypoint[MAX_WAYPOINTS_PER_TOWN];