From 49220cc6f1e3570dc1b9001c40af2a8a4e35b649 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 18 Jun 2007 19:53:50 +0000 Subject: (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified. --- src/waypoint.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/waypoint.cpp') diff --git a/src/waypoint.cpp b/src/waypoint.cpp index 134b56996..c621bd71e 100644 --- a/src/waypoint.cpp +++ b/src/waypoint.cpp @@ -272,7 +272,7 @@ CommandCost CmdBuildTrainWaypoint(TileIndex tile, uint32 flags, uint32 p1, uint3 YapfNotifyTrackLayoutChange(tile, AxisToTrack(axis)); } - return _price.build_train_depot; + return CommandCost(_price.build_train_depot); } /** @@ -324,7 +324,7 @@ CommandCost RemoveTrainWaypoint(TileIndex tile, uint32 flags, bool justremove) YapfNotifyTrackLayoutChange(tile, track); } - return _price.remove_train_depot; + return CommandCost(_price.remove_train_depot); } /** @@ -382,7 +382,7 @@ CommandCost CmdRenameWaypoint(TileIndex tile, uint32 flags, uint32 p1, uint32 p2 MarkWholeScreenDirty(); } } - return 0; + return CommandCost(); } /** -- cgit v1.2.3-70-g09d2