From 27ffd42f841c05077780c1a55947c9b8972888ed Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 9 Dec 2001 15:48:34 +0000 Subject: [PATCH] fixed stupid typo defining false to be one (1), which caused zlib compression to fail. --- lib/rfxswf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rfxswf.h b/lib/rfxswf.h index afee79c..016f8e3 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -26,7 +26,7 @@ #define TRUE (1) #endif #ifndef FALSE -#define FALSE (1) +#define FALSE (0) #endif // SWF Types -- 1.7.10.4