summaryrefslogtreecommitdiff
path: root/src/timetable_cmd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-02-14 16:31:35 +0000
committeralberth <alberth@openttd.org>2010-02-14 16:31:35 +0000
commit33a96b5ef32499896accf9b32673455be87afe81 (patch)
tree85e59b2b8ec679f1131d597a55fdb65687c21a89 /src/timetable_cmd.cpp
parentac65c415094b01e2f612e720737a633cd822cde0 (diff)
downloadopenttd-33a96b5ef32499896accf9b32673455be87afe81.tar.xz
(svn r19132) -Codechange: No need to end a line with ;;.
Diffstat (limited to 'src/timetable_cmd.cpp')
-rw-r--r--src/timetable_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timetable_cmd.cpp b/src/timetable_cmd.cpp
index 4cde4b06f..548e3237e 100644
--- a/src/timetable_cmd.cpp
+++ b/src/timetable_cmd.cpp
@@ -81,7 +81,7 @@ CommandCost CmdChangeTimetable(TileIndex tile, DoCommandFlag flags, uint32 p1, u
int travel_time = order->travel_time;
if (packed_time) {
travel_time = GB(p2, 0, 16);
- wait_time = GB(p2, 16, 16);;
+ wait_time = GB(p2, 16, 16);
} else if (is_journey) {
travel_time = GB(p2, 0, 16);
} else {