From 5eab3eb454b4365998640ed7007375cc2f0c30d4 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Fri, 13 Apr 2018 05:51:50 -0700 Subject: [PATCH] Rounded the last digit of pi correctly (#37148) It's important, fellas. Makes pi 0.000007 wrong instead of 0.00009 wrong. --- code/__DEFINES/maths.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__DEFINES/maths.dm b/code/__DEFINES/maths.dm index d05956eae1..3e638f1e2e 100644 --- a/code/__DEFINES/maths.dm +++ b/code/__DEFINES/maths.dm @@ -4,7 +4,7 @@ #define NUM_E 2.71828183 -#define PI 3.1415 +#define PI 3.1416 #define INFINITY 1e31 //closer then enough #define SHORT_REAL_LIMIT 16777216 @@ -201,4 +201,4 @@ return list(region_x1 & region_x2, region_y1 & region_y2) -// ) \ No newline at end of file +// )