From d46f119cf808d4cffeecea9bc5bccc87e67da8c7 Mon Sep 17 00:00:00 2001 From: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com> Date: Tue, 17 Sep 2019 16:42:58 -0500 Subject: [PATCH] :bangbang: (#12334) --- code/__DEFINES/math.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/math.dm b/code/__DEFINES/math.dm index 4d98c565c3a..2f2968561da 100644 --- a/code/__DEFINES/math.dm +++ b/code/__DEFINES/math.dm @@ -1,7 +1,7 @@ #define PI 3.1415 #define SPEED_OF_LIGHT 3e8 //not exact but hey! #define SPEED_OF_LIGHT_SQ 9e+16 -#define INFINITY 1e31 //closer then enough +#define INFINITY 1e31 //closer than enough #define Clamp(x, y, z) ((x) <= (y) ? (y) : ((x) >= (z) ? (z) : (x))) #define CLAMP01(x) (Clamp((x), 0, 1))