summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-02-08 15:54:36 +0000
committerrubidium <rubidium@openttd.org>2007-02-08 15:54:36 +0000
commitf7c5e770f08df8e3b7899d223696a5c458254c75 (patch)
treecce90f03e85522a28c53c8d7b16d1ae856b0d619
parent39454ab61a92b370832010e4dcec0e6df5bcf001 (diff)
downloadopenttd-f7c5e770f08df8e3b7899d223696a5c458254c75.tar.xz
(svn r8637) -Fix: CTRL-clicking on a hangar in the order list segfaulted as hangars are part of a station instead of real depots.
-rw-r--r--src/order_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/order_gui.cpp b/src/order_gui.cpp
index 9ef6f7f30..21b711fe7 100644
--- a/src/order_gui.cpp
+++ b/src/order_gui.cpp
@@ -464,7 +464,7 @@ static void OrdersWndProc(Window *w, WindowEvent *e)
switch (ord->type) {
case OT_GOTO_STATION: xy = GetStation(ord->dest)->xy ; break;
- case OT_GOTO_DEPOT: xy = GetDepot(ord->dest)->xy; break;
+ case OT_GOTO_DEPOT: xy = (v->type == VEH_Aircraft) ? GetStation(ord->dest)->xy : GetDepot(ord->dest)->xy; break;
case OT_GOTO_WAYPOINT: xy = GetWaypoint(ord->dest)->xy; break;
default: xy = 0; break;
}