Changeset - r7404:da2b313e0c52
[Not reviewed]
master
0 1 0
truelight - 17 years ago 2007-08-03 23:19:29
truelight@openttd.org
(svn r10777) -Fix: don't put the ctor debug on lvl3, it is more a lvl5 debug
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/station.h
Show inline comments
 
@@ -48,7 +48,7 @@ struct RoadStop : PoolItem<RoadStop, Roa
 
		TRUCK                               ///< A standard stop for trucks
 
	};
 

	
 
	static const int  cDebugCtorLevel =  3;  ///< Debug level on which Contructor / Destructor messages are printed
 
	static const int  cDebugCtorLevel =  5;  ///< Debug level on which Contructor / Destructor messages are printed
 
	static const uint LIMIT           = 16;  ///< The maximum amount of roadstops that are allowed at a single station
 
	static const uint MAX_BAY_COUNT   =  2;  ///< The maximum number of loading bays
 

	
 
@@ -154,7 +154,7 @@ struct Station : PoolItem<Station, Stati
 

	
 
	StationRect rect; ///< Station spread out rectangle (not saved) maintained by StationRect_xxx() functions
 

	
 
	static const int cDebugCtorLevel = 3;
 
	static const int cDebugCtorLevel = 5;
 

	
 
	Station(TileIndex tile = 0);
 
	virtual ~Station();
0 comments (0 inline, 0 general)