diff options
Diffstat (limited to 'rail_cmd.c')
-rw-r--r-- | rail_cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rail_cmd.c b/rail_cmd.c index f2c344e0f..b9256b961 100644 --- a/rail_cmd.c +++ b/rail_cmd.c @@ -777,7 +777,7 @@ static void DoDeleteWaypoint(Waypoint *cp) } // delete waypoints after a while -void WaypointsDailyLoop() +void WaypointsDailyLoop(void) { Waypoint *cp; for(cp = _waypoints; cp != endof(_waypoints); cp++) { @@ -2276,7 +2276,7 @@ static uint32 VehicleEnter_Track(Vehicle *v, uint tile, int x, int y) return 0; } -void InitializeRail() +void InitializeRail(void) { _last_built_train_depot_tile = 0; } |