summaryrefslogtreecommitdiff
path: root/order_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-11-16 14:41:01 +0000
committertruelight <truelight@openttd.org>2005-11-16 14:41:01 +0000
commitcd1ad247231e98e83298943ac661af0990058cf9 (patch)
tree214102297a7345bf5d6cf0849e439481b6c5fb1a /order_gui.c
parenta56ffc6a0fe807ff59c4b48e1837257761f6cfab (diff)
downloadopenttd-cd1ad247231e98e83298943ac661af0990058cf9.tar.xz
(svn r3210) -Codechange: use IsRailWaypoint where possible (instead of magicnumbers)
-Codechange: IsRailWaypoint should take 'tile', not 'm5'
Diffstat (limited to 'order_gui.c')
-rw-r--r--order_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/order_gui.c b/order_gui.c
index 4459c1b46..adf4ab8bc 100644
--- a/order_gui.c
+++ b/order_gui.c
@@ -246,7 +246,7 @@ static Order GetOrderCmdFromTile(const Vehicle *v, TileIndex tile)
if (IsTileType(tile, MP_RAILWAY) &&
v->type == VEH_Train &&
IsTileOwner(tile, _local_player) &&
- (_m[tile].m5 & 0xFE) == 0xC4) {
+ IsRailWaypoint(tile)) {
order.type = OT_GOTO_WAYPOINT;
order.flags = 0;
order.station = GetWaypointByTile(tile)->index;