diff options
author | truelight <truelight@openttd.org> | 2007-08-03 23:19:29 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-08-03 23:19:29 +0000 |
commit | c02d8ebb09f6e4294f6fab6c8a5cc90ef483c36c (patch) | |
tree | 41626151b172f97367ce801b6cf0eaa0c919be45 | |
parent | 537025e63b6cde0f0b9d423f2e8a858d91241263 (diff) | |
download | openttd-c02d8ebb09f6e4294f6fab6c8a5cc90ef483c36c.tar.xz |
(svn r10777) -Fix: don't put the ctor debug on lvl3, it is more a lvl5 debug
-rw-r--r-- | src/station.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station.h b/src/station.h index b679499d7..b6e3596be 100644 --- a/src/station.h +++ b/src/station.h @@ -48,7 +48,7 @@ struct RoadStop : PoolItem<RoadStop, RoadStopID, &_RoadStop_pool> { 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, StationID, &_Station_pool> { 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(); |