summaryrefslogtreecommitdiff
path: root/variables.h
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2004-08-16 14:48:35 +0000
committerdarkvater <darkvater@openttd.org>2004-08-16 14:48:35 +0000
commit68c9b7c3ad902784c07b0d76c81c87e073c826b3 (patch)
tree7adb6f3ca0f68bd8744d5835a42dd6919a93f4c2 /variables.h
parentd33c833a82808c256562b7f3a7e07251613d14ca (diff)
downloadopenttd-68c9b7c3ad902784c07b0d76c81c87e073c826b3.tar.xz
(svn r66) -Fix Station list updated on station deletion/station rename
-Changed debug messages to comply with DEBUG(name, level) heuristics
Diffstat (limited to 'variables.h')
-rw-r--r--variables.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/variables.h b/variables.h
index fcb7f1736..a992b1e12 100644
--- a/variables.h
+++ b/variables.h
@@ -426,6 +426,7 @@ VARDEF bool _ignore_wrong_grf;
/* Debugging levels */
VARDEF int _debug_spritecache_level;
VARDEF int _debug_misc_level;
+VARDEF int _debug_grf_level;
void CDECL debug(const char *s, ...);
#define DEBUG(name, level) if (level == 0 || _debug_ ## name ## _level >= level) debug