diff --git a/engine/common/console.h b/engine/common/console.h index 94fa6740a..86bef2713 100644 --- a/engine/common/console.h +++ b/engine/common/console.h @@ -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