summaryrefslogtreecommitdiff
path: root/order_cmd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-19 16:26:45 +0000
committertruelight <truelight@openttd.org>2004-12-19 16:26:45 +0000
commit60204bd3095b4021101478cfd7b2b57e2ff7d1dc (patch)
treead426c81725ec0c2e2e64b8bd1aaa777d193841d /order_cmd.c
parentdb16262698bcd1d092ed51a104dc4d714045d726 (diff)
downloadopenttd-60204bd3095b4021101478cfd7b2b57e2ff7d1dc.tar.xz
(svn r1175) -Fix: [ 1086375 ] Backup-order-list was not closed with an OT_NOTHING,
resulting in order-lists mixing together (maybe tnx to Darkvater, not sure though..)
Diffstat (limited to 'order_cmd.c')
-rw-r--r--order_cmd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/order_cmd.c b/order_cmd.c
index 10c80048d..2ce7da4d6 100644
--- a/order_cmd.c
+++ b/order_cmd.c
@@ -327,6 +327,8 @@ void BackupVehicleOrders(Vehicle *v, BackuppedOrders *bak)
do {
*os++ = *sched++;
} while (sched->type != OT_NOTHING);
+ /* Make sure the last item is OT_NOTHING */
+ os->type = OT_NOTHING;
}
}