From 93184bf4120430800f447fc500d718bae7b02592 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 24 Jan 2015 19:46:03 +1100 Subject: [PATCH] Make TRUE and FALSE booleans --- qcsrc/common/util-pre.qh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qcsrc/common/util-pre.qh b/qcsrc/common/util-pre.qh index 93db399ec..09aec2d3e 100644 --- a/qcsrc/common/util-pre.qh +++ b/qcsrc/common/util-pre.qh @@ -13,8 +13,8 @@ #define bool float // Boolean Constants -const float true = 1; -const float false = 0; -const float TRUE = 1; -const float FALSE = 0; +const bool true = 1; +const bool false = 0; +const bool TRUE = 1; +const bool FALSE = 0; #endif -- 2.39.2