(svn r19132) -Codechange: No need to end a line with ;;.

This commit is contained in:
alberth
2010-02-14 16:31:35 +00:00
parent ac65c41509
commit 33a96b5ef3
13 changed files with 14 additions and 14 deletions

View File

@@ -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 {