]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/mathlib/mathlib.c
Merge branch 'illwieckz/picomaterial' into 'master'
[xonotic/netradiant.git] / libs / mathlib / mathlib.c
index ce6cfdc2d87fcf87e4920af33657deded791b020..da26a92072ec95c865506ec30ab3e5bfea404f70 100644 (file)
@@ -325,7 +325,7 @@ void _Vector53Copy( vec5_t in, vec3_t out ){
 }
 
 // NOTE: added these from Ritual's Q3Radiant
-#define INVALID_BOUNDS 99999
+const int INVALID_BOUNDS = 99999;
 void ClearBounds( vec3_t mins, vec3_t maxs ){
        mins[0] = mins[1] = mins[2] = +INVALID_BOUNDS;
        maxs[0] = maxs[1] = maxs[2] = -INVALID_BOUNDS;