]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/bool.qh
Offset exact trigger testing by a single QU to account for the engine's default offse...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / bool.qh
index 34e8bfc66999b66968cc4b08e8de1b283167dbea..c78f717d9e983be74923a5dd8fb5252b73f9b627 100644 (file)
@@ -1,5 +1,4 @@
-#ifndef BOOL_H
-#define BOOL_H
+#pragma once
 
 #ifndef QCC_SUPPORT_BOOL
        // Boolean Constants
@@ -7,11 +6,10 @@
        const int false = 0;
 #endif
 
-// Transitional aliases
-[[deprecated("use true")]][[alias("true")]] const bool TRUE;
-[[deprecated("use false")]][[alias("false")]] const bool FALSE;
+#define boolean(value) ((value) != 0)
 
 // get true/false value of a string with multiple different inputs
+ERASEABLE
 float InterpretBoolean(string input)
 {
        switch (strtolower(input))
@@ -26,10 +24,6 @@ float InterpretBoolean(string input)
                case "off":
                        return false;
 
-               default: return stof(input);
+               default: return boolean(stof(input));
        }
 }
-
-#define boolean(value) ((value) != 0)
-
-#endif