2 @Copyright Looking Glass Studios, Inc.
3 1996,1997,1998,1999,2000 Unpublished Work.
6 // $Header: r:/t2repos/thief2/src/render/litdbg.h,v 1.1 1999/06/07 22:58:27 dc Exp $
7 // is this idiotic, or what...
16 EXTERN
int _watch_light
;
17 #define is_watch_light(o) (o==_watch_light)
18 #define watch_light_mprint(o,x) do { if (is_watch_light(o)) mprintf x; } while (0)
21 #define is_watch_light(o) (FALSE)
22 #define watch_light_mprint(o,x)
25 // uncomment this if you want wicked loud debugging of lights
26 //#define LOUD_LIGHT_DEBUG
28 #ifdef LOUD_LIGHT_DEBUG
29 #define loud_lights() config_is_defined("loud_lighting")
30 #define loud_light_mprint(x) do { if (loud_lights()) mprintf x; } while (0)
33 #define loud_light_mprint(x)