From 46cbc65dd0267643ce48133a7ef2c79a4e340edc Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 1 Aug 2004 00:01:04 +0000 Subject: [PATCH] turn off debug spew --- stepmania/src/pcre/pcre.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/pcre/pcre.c b/stepmania/src/pcre/pcre.c index fe0f261b38..74aaeac89f 100644 --- a/stepmania/src/pcre/pcre.c +++ b/stepmania/src/pcre/pcre.c @@ -41,7 +41,9 @@ inline, and there are *still* stupid compilers about that don't like indented pre-processor statements. I suppose it's only been 10 years... */ #ifdef DEBUG -#define DPRINTF(p) printf p +// disable debug printing. -Chris +//#define DPRINTF(p) printf p +#define DPRINTF(p) /*nothing*/ #else #define DPRINTF(p) /*nothing*/ #endif