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
commit22353393cdf6e68c605766dc7a63388f5c378804 (patch)
tree21efefa300c4a378057647068e6355bbf3d6163c /src/vehicle_gui.cpp
parent0b3a78b927fc20452f4067d8ece9abfa0ad2ea21 (diff)
downloadopenttd-22353393cdf6e68c605766dc7a63388f5c378804.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? */