From: Mario Date: Sat, 24 Jan 2015 08:46:03 +0000 (+1100) Subject: Make TRUE and FALSE booleans X-Git-Tag: xonotic-v0.8.1~133^2~46 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=93184bf4120430800f447fc500d718bae7b02592;p=xonotic%2Fxonotic-data.pk3dir.git Make TRUE and FALSE booleans --- 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