summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2005-02-05 12:10:09 +0000
committercelestar <celestar@openttd.org>2005-02-05 12:10:09 +0000
commit422ebcf8e0aad014d3590b883db8a79f28fdf9d6 (patch)
tree97994e24b8d1471604bfb15cdaa87858bc54e454 /station_cmd.c
parent4b71f9126e69aa1cb9c8293bc836401dfe7bdda4 (diff)
downloadopenttd-422ebcf8e0aad014d3590b883db8a79f28fdf9d6.tar.xz
(svn r1799) -Codechange: [ Multistop ] Added debug class "ms" and more debugging
output for multistops
Diffstat (limited to 'station_cmd.c')
-rw-r--r--station_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/station_cmd.c b/station_cmd.c
index 8290a5bb8..587c6acf4 100644
--- a/station_cmd.c
+++ b/station_cmd.c
@@ -2441,7 +2441,7 @@ static void StationHandleBigTick(Station *st)
Vehicle *v = GetVehicle(rs->slot[k]);
if (v->u.road.slot != rs) {
- DEBUG(misc, 1) ("Bus Slot Desync! cleaning up (Don't panic)");
+ DEBUG(ms, 0) ("Multistop: Bus Slot Desync! cleaning up (Don't panic)");
v->u.road.slot = NULL;
v->u.road.slot_age = 0;
rs->slot[k] = INVALID_SLOT;
@@ -2457,7 +2457,7 @@ static void StationHandleBigTick(Station *st)
Vehicle *v = GetVehicle(rs->slot[k]);
if (v->u.road.slot != rs) {
- DEBUG(misc, 1) ("Truck Slot Desync! cleaning up (Don't panic)");
+ DEBUG(ms, 0) ("Multistop: Truck Slot Desync! cleaning up (Don't panic)");
v->u.road.slot = NULL;
v->u.road.slot_age = 0;
rs->slot[k] = INVALID_SLOT;