diff options
Diffstat (limited to 'Runtime/Math/MathHelper.h')
-rw-r--r-- | Runtime/Math/MathHelper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Runtime/Math/MathHelper.h b/Runtime/Math/MathHelper.h index c41eec9..ad64dcf 100644 --- a/Runtime/Math/MathHelper.h +++ b/Runtime/Math/MathHelper.h @@ -1,7 +1,7 @@ #pragma once #define max(a, b)\ -(a)>(b)?(a):(b) +((a)>(b)?(a):(b)) #define min(a, b)\ (a)<(b)?(a):(b) |