summaryrefslogtreecommitdiff
path: root/train_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-08 18:18:20 +0000
committertruelight <truelight@openttd.org>2004-12-08 18:18:20 +0000
commit22951f5523678137d35d0f9c68733b9a05117c49 (patch)
treea6148cce2cb4fb4491fc86f0afddb749bdd2f10e /train_gui.c
parentec40598d4c6bef047b3369a4b6d982d2b2d2568b (diff)
downloadopenttd-22951f5523678137d35d0f9c68733b9a05117c49.tar.xz
(svn r984) -Fix: deleted a debug level 0 line that was introduced in revision 978
Diffstat (limited to 'train_gui.c')
-rw-r--r--train_gui.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/train_gui.c b/train_gui.c
index edc8b74aa..79ba7d27f 100644
--- a/train_gui.c
+++ b/train_gui.c
@@ -827,7 +827,6 @@ static void TrainViewWndProc(Window *w, WindowEvent *e)
DoCommandP(v->tile, v->index, 0, NULL, CMD_START_STOP_TRAIN | CMD_MSG(STR_883B_CAN_T_STOP_START_TRAIN));
break;
case 5: /* center main view */
- DEBUG(misc, 0) ("Train: %d, Velocity: %d, Current Order: %i:%d:%x:%x", v->index, v->cur_speed, v->cur_order_index, v->current_order.station, v->current_order.flags, v->current_order.type);
ScrollMainWindowTo(v->x_pos, v->y_pos);
break;
case 6: /* goto depot */
@@ -1199,7 +1198,7 @@ static void GlobalSortTrainList()
memset(_train_sort_dirty, true, sizeof(_train_sort_dirty));
_vehicle_sort_dirty[VEHTRAIN] = false;
- DEBUG(misc, 1) ("Resorting global trains list...");
+ DEBUG(misc, 1) ("Resorting global trains list...");
}
static void MakeSortedTrainList(byte owner)