diff --git a/code/__DEFINES/math.dm b/code/__DEFINES/math.dm index 7707c67ab7e..d71047fe3d3 100644 --- a/code/__DEFINES/math.dm +++ b/code/__DEFINES/math.dm @@ -20,7 +20,6 @@ #define Cot(x) (1 / Tan(x)) #define Csc(x) (1 / sin(x)) #define Sec(x) (1 / cos(x)) -#define Default(a, b) ((a) ? (a) : (b)) #define Floor(x) (round(x)) #define Inverse(x) (1 / (x)) #define IsEven(x) ((x) % 2 == 0)