summaryrefslogtreecommitdiff
path: root/src/waypoint_cmd.cpp
diff options
context:
space:
mode:
authorPeterN <peter@fuzzle.org>2019-04-13 14:12:34 +0100
committerGitHub <noreply@github.com>2019-04-13 14:12:34 +0100
commitabe8cf4985da211ad70c6232a3c737f15574f5de (patch)
treeb391f3da8a64d9534f56f22d492bb6095b113343 /src/waypoint_cmd.cpp
parent801cbea9cce1e04e6921bb087add8206cffe1fe1 (diff)
downloadopenttd-abe8cf4985da211ad70c6232a3c737f15574f5de.tar.xz
Codechange: Replace duplicated code with TileArea::Expand() (#7467)
Diffstat (limited to 'src/waypoint_cmd.cpp')
-rw-r--r--src/waypoint_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint_cmd.cpp b/src/waypoint_cmd.cpp
index 4c677a88a..76326a3a4 100644
--- a/src/waypoint_cmd.cpp
+++ b/src/waypoint_cmd.cpp
@@ -200,7 +200,7 @@ CommandCost CmdBuildRailWaypoint(TileIndex start_tile, DoCommandFlag flags, uint
}
Waypoint *wp = nullptr;
- TileArea new_location(TileArea(start_tile, width, height));
+ TileArea new_location(start_tile, width, height);
CommandCost ret = FindJoiningWaypoint(est, station_to_join, adjacent, new_location, &wp);
if (ret.Failed()) return ret;