From 6faa6ebb175a1cbb9aa6f8702a3b1fb9b6235618 Mon Sep 17 00:00:00 2001 From: Thad Ward Date: Mon, 9 Feb 2004 13:30:25 +0000 Subject: [PATCH] FALSE is not aways defined, so we need to define it if it isn't. --- stepmania/src/XmlFile.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/XmlFile.h b/stepmania/src/XmlFile.h index 9eff62f56d..e1d313c165 100644 --- a/stepmania/src/XmlFile.h +++ b/stepmania/src/XmlFile.h @@ -24,7 +24,9 @@ #define LPTSTR char* #define LPCTSTR const char* #define _tcschr strchr -//#define FALSE false +#ifndef FALSE +# define FALSE false +#endif #define _istspace isspace #define _tcspbrk strpbrk #define IsEmpty empty