commit ceccaa32be75e49c8fc0b27ff46770c668d853d7
parent 1641764037030319b1ca4f1d9165a0169c2c3dcb
Author: Olav Sørensen <olav.sorensen@live.no>
Date: Wed, 6 Nov 2024 21:37:13 +0100
Update ft2_header.h
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/ft2_header.h b/src/ft2_header.h
@@ -12,7 +12,7 @@
#endif
#include "ft2_replayer.h"
-#define PROG_VER_STR "1.87"
+#define PROG_VER_STR "1.88"
// do NOT change these! It will only mess things up...
@@ -47,6 +47,10 @@
#define PATH_MAX MAX_PATH
#endif
+#ifndef PI
+#define PI 3.14159265358979323846264338327950288
+#endif
+
#define SGN(x) (((x) >= 0) ? 1 : -1)
#define ABS(a) (((a) < 0) ? -(a) : (a))
#define MIN(a, b) (((a) < (b)) ? (a) : (b))