summaryrefslogtreecommitdiff
path: root/src/timetable_gui.cpp
diff options
context:
space:
mode:
authormaedhros <maedhros@openttd.org>2008-01-27 17:32:12 +0000
committermaedhros <maedhros@openttd.org>2008-01-27 17:32:12 +0000
commitf95fb570adc9d3f228082083601cc07e5b7e7621 (patch)
tree8523fc515f0e4f5486b87f18142ee4ef76b6e19b /src/timetable_gui.cpp
parentec1d5478891d365e4db4da5bc0e4eb1a51779dec (diff)
downloadopenttd-f95fb570adc9d3f228082083601cc07e5b7e7621.tar.xz
(svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
Diffstat (limited to 'src/timetable_gui.cpp')
-rw-r--r--src/timetable_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timetable_gui.cpp b/src/timetable_gui.cpp
index 29fc03316..ca49b9673 100644
--- a/src/timetable_gui.cpp
+++ b/src/timetable_gui.cpp
@@ -104,7 +104,7 @@ static void DrawTimetableWindow(Window *w)
break;
case OT_GOTO_STATION:
- SetDParam(0, (order->flags & OFB_NON_STOP) ? STR_880C_GO_NON_STOP_TO : STR_8806_GO_TO);
+ SetDParam(0, (order->flags & OFB_NON_STOP) ? STR_880A_GO_NON_STOP_TO : STR_8806_GO_TO);
SetDParam(1, order->dest);
if (order->wait_time > 0) {
@@ -125,7 +125,7 @@ static void DrawTimetableWindow(Window *w)
switch (v->type) {
case VEH_TRAIN: string = (order->flags & OFB_NON_STOP) ? STR_880F_GO_NON_STOP_TO_TRAIN_DEPOT : STR_GO_TO_TRAIN_DEPOT; break;
- case VEH_ROAD: string = STR_9038_GO_TO_ROADVEH_DEPOT; break;
+ case VEH_ROAD: string = STR_GO_TO_ROADVEH_DEPOT; break;
case VEH_SHIP: string = STR_GO_TO_SHIP_DEPOT; break;
default: break;
}