station_gui.c
changeset 5568 75f13d7bfaed
parent 5293 4d59f970b2fe
child 5623 ef2a8a524a95
--- a/station_gui.c	Tue Dec 26 17:22:47 2006 +0000
+++ b/station_gui.c	Tue Dec 26 17:36:18 2006 +0000
@@ -202,10 +202,9 @@
 
 	/* Create array for sorting */
 	station_sort = malloc((GetMaxStationIndex() + 1) * sizeof(station_sort[0]));
-	if (station_sort == NULL)
-		error("Could not allocate memory for the station-sorting-list");
+	if (station_sort == NULL) error("Could not allocate memory for the station-sorting-list");
 
-	DEBUG(misc, 1) ("Building station list for player %d...", owner);
+	DEBUG(misc, 3, "Building station list for player %d", owner);
 
 	FOR_ALL_STATIONS(st) {
 		if (st->owner == owner) {
@@ -476,7 +475,7 @@
 
 	case WE_TICK:
 		if (--sl->resort_timer == 0) {
-			DEBUG(misc, 1) ("Periodic rebuild station list player %d", owner);
+			DEBUG(misc, 3, "Periodic rebuild station list player %d", owner);
 			sl->resort_timer = DAY_TICKS * PERIODIC_RESORT_DAYS;
 			sl->flags |= VL_REBUILD;
 			SetWindowDirty(w);