Added a macro so that we can turn of trace logging with precompiler. (Useful on someone else's computer, Not for releases)

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@310 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-10-07 13:00:48 +00:00
parent 4b264ccead
commit f6343b338c
1 changed files with 5 additions and 0 deletions

View File

@ -97,3 +97,8 @@ void Con_ToggleConsole_f (void);
void Con_NotifyBox (char *text); // during startup for sound / cd warnings
#ifdef CRAZYDEBUGGING
#define TRACE(x) Con_Print x
#else
#define TRACE(x)
#endif