summaryrefslogtreecommitdiff
path: root/src/maths/maths.h
diff options
context:
space:
mode:
authoromnisci3nce <omniscient.oce@gmail.com>2024-07-19 15:52:14 +1000
committeromnisci3nce <omniscient.oce@gmail.com>2024-07-19 15:52:14 +1000
commitefb2d293d5e849fc96e4e386d55a7611795561aa (patch)
treecf4a2054a868ec4757a60c217d64b85413bc5766 /src/maths/maths.h
parent82515f9d90ac149984013f0d64c1cab37b349b29 (diff)
clean up texture type handling a little bit
Diffstat (limited to 'src/maths/maths.h')
-rw-r--r--src/maths/maths.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/maths/maths.h b/src/maths/maths.h
index 3a8f34c..cd5b7b9 100644
--- a/src/maths/maths.h
+++ b/src/maths/maths.h
@@ -15,8 +15,8 @@
// --- Helpers
#define deg_to_rad(x) (x * 3.14 / 180.0)
-#define min(a, b) (a < b ? a : b)
-#define max(a, b) (a > b ? a : b)
+#define MIN(a, b) (a < b ? a : b)
+#define MAX(a, b) (a > b ? a : b)
// --- Vector Implementations