diff options
author | rubidium <rubidium@openttd.org> | 2009-08-05 17:59:21 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-08-05 17:59:21 +0000 |
commit | 1fe3ad3288fd2198f5480f75a17b707cd2a3c2af (patch) | |
tree | 89d8ada3dbf29005d4cf5ab88204c3b24dd97795 /src/timetable_cmd.cpp | |
parent | 2fe966fd8c56a7cab7a4a9dd9485e0034e6cf7f0 (diff) | |
download | openttd-1fe3ad3288fd2198f5480f75a17b707cd2a3c2af.tar.xz |
(svn r17075) -Codechange: rename ~750 strings to be more uniform with their relatives
Diffstat (limited to 'src/timetable_cmd.cpp')
-rw-r--r-- | src/timetable_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timetable_cmd.cpp b/src/timetable_cmd.cpp index 4e12743b4..2a50156b6 100644 --- a/src/timetable_cmd.cpp +++ b/src/timetable_cmd.cpp @@ -82,13 +82,13 @@ CommandCost CmdChangeTimetable(TileIndex tile, DoCommandFlag flags, uint32 p1, u if (wait_time != order->wait_time) { switch (order->GetType()) { case OT_GOTO_STATION: - if (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) return_cmd_error(STR_TIMETABLE_NOT_STOPPING_HERE); + if (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) return_cmd_error(STR_ERROR_TIMETABLE_NOT_STOPPING_HERE); break; case OT_CONDITIONAL: break; - default: return_cmd_error(STR_TIMETABLE_ONLY_WAIT_AT_STATIONS); + default: return_cmd_error(STR_ERROR_TIMETABLE_ONLY_WAIT_AT_STATIONS); } } |