summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-13 16:48:28 +0000
committerrubidium <rubidium@openttd.org>2008-04-13 16:48:28 +0000
commitaf3723e21724537cf14a8a13a68aecf19c3cd269 (patch)
tree21efefa300c4a378057647068e6355bbf3d6163c /src/vehicle_gui.cpp
parent5e2a5953a460a9ecb4aa428ac0e34074d6329461 (diff)
downloadopenttd-af3723e21724537cf14a8a13a68aecf19c3cd269.tar.xz
(svn r12687) -Change: show when a vehicle is actually leaving the station instead of loading/unloading.
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp
index f1e3101d3..806150e82 100644
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -1990,7 +1990,7 @@ static void DrawVehicleViewWindow(Window *w)
case OT_LEAVESTATION:
if (v->type != VEH_AIRCRAFT) {
- str = STR_882F_LOADING_UNLOADING;
+ str = STR_LEAVING;
break;
}
/* fall-through if aircraft. Does this even happen? */