mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-19 15:25:39 +00:00
(svn r1737) Add DEBUG category "map" and use it to print the map size when allocating the map
This commit is contained in:
parent
5f05703206
commit
7526afdae0
2
map.c
2
map.c
@ -21,6 +21,8 @@ void InitMap(uint log_x, uint log_y)
|
|||||||
|
|
||||||
assert(log_x <= 15 && log_y <= 15);
|
assert(log_x <= 15 && log_y <= 15);
|
||||||
|
|
||||||
|
DEBUG(map, 1)("Allocating map of size %dx%d", log_x, log_y);
|
||||||
|
|
||||||
_map_log_x = log_x;
|
_map_log_x = log_x;
|
||||||
_map_log_y = log_y;
|
_map_log_y = log_y;
|
||||||
|
|
||||||
|
2
ttd.c
2
ttd.c
@ -448,6 +448,7 @@ void SetDebugString(const char *s)
|
|||||||
_debug_grf_level = v;
|
_debug_grf_level = v;
|
||||||
_debug_ai_level = v;
|
_debug_ai_level = v;
|
||||||
_debug_net_level = v;
|
_debug_net_level = v;
|
||||||
|
_debug_map_level = v;
|
||||||
}
|
}
|
||||||
|
|
||||||
// individual levels
|
// individual levels
|
||||||
@ -466,6 +467,7 @@ void SetDebugString(const char *s)
|
|||||||
else if IS_LVL("grf") p = &_debug_grf_level;
|
else if IS_LVL("grf") p = &_debug_grf_level;
|
||||||
else if IS_LVL("ai") p = &_debug_ai_level;
|
else if IS_LVL("ai") p = &_debug_ai_level;
|
||||||
else if IS_LVL("net") p = &_debug_net_level;
|
else if IS_LVL("net") p = &_debug_net_level;
|
||||||
|
else if IS_LVL("map") p = &_debug_map_level;
|
||||||
else {
|
else {
|
||||||
ShowInfoF("Unknown debug level '%.*s'", s-t, t);
|
ShowInfoF("Unknown debug level '%.*s'", s-t, t);
|
||||||
return;
|
return;
|
||||||
|
@ -445,6 +445,7 @@ VARDEF int _debug_misc_level;
|
|||||||
VARDEF int _debug_grf_level;
|
VARDEF int _debug_grf_level;
|
||||||
VARDEF int _debug_ai_level;
|
VARDEF int _debug_ai_level;
|
||||||
VARDEF int _debug_net_level;
|
VARDEF int _debug_net_level;
|
||||||
|
VARDEF int _debug_map_level;
|
||||||
|
|
||||||
/* Forking stuff */
|
/* Forking stuff */
|
||||||
VARDEF bool _dedicated_forks;
|
VARDEF bool _dedicated_forks;
|
||||||
|
Loading…
Reference in New Issue
Block a user