From 51eeea477b6e1b20f3505b1d002aa0d0c3d02341 Mon Sep 17 00:00:00 2001 From: celestar Date: Mon, 28 Mar 2005 08:17:35 +0000 Subject: [PATCH] (svn r2097) -Codechange: [Multistop] Prettified the previous commit --- station_cmd.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/station_cmd.c b/station_cmd.c index df13bd69f4..05c560eb40 100644 --- a/station_cmd.c +++ b/station_cmd.c @@ -2439,11 +2439,11 @@ static void StationHandleBigTick(Station *st) Vehicle *v = GetVehicle(rs->slot[k]); if (v->u.road.slot != rs) { - DEBUG(ms, 1) ("Multistop: Truck Slot Desync between stop at "\ - "0x%x of station %d (at 0x%x) and Vehicle %d at 0x%x, "\ - "going to 0x%x! "\ - "cleaning up (Don't panic)", \ - rs->xy, st->index, st->xy, v->unitnumber, v->tile, \ + DEBUG(ms, 1) ("Multistop: Truck Slot Desync between stop at " + "0x%x of station %d (at 0x%x) and Vehicle %d at 0x%x, " + "going to 0x%x! " + "cleaning up (Don't panic)", + rs->xy, st->index, st->xy, v->unitnumber, v->tile, v->dest_tile); v->u.road.slot = NULL; v->u.road.slot_age = 0; @@ -2460,11 +2460,11 @@ static void StationHandleBigTick(Station *st) Vehicle *v = GetVehicle(rs->slot[k]); if (v->u.road.slot != rs) { - DEBUG(ms, 1) ("Multistop: Truck Slot Desync between stop at "\ - "0x%x of station %d (at 0x%x) and Vehicle %d at 0x%x, "\ - "going to 0x%x! "\ - "cleaning up (Don't panic)", \ - rs->xy, st->index, st->xy, v->unitnumber, v->tile, \ + DEBUG(ms, 1) ("Multistop: Truck Slot Desync between stop at " + "0x%x of station %d (at 0x%x) and Vehicle %d at 0x%x, " + "going to 0x%x! " + "cleaning up (Don't panic)", + rs->xy, st->index, st->xy, v->unitnumber, v->tile, v->dest_tile); v->u.road.slot = NULL; v->u.road.slot_age = 0;