Whoops, lowercase absf already exists

This commit is contained in:
Arceveti
2021-09-29 16:37:20 -07:00
parent ef4ffdc71f
commit d1ed598480

View File

@@ -58,7 +58,7 @@ extern f32 gSineTable[];
#define ABSF(x) ((x) > 0.0f ? (x) : -(x))
#define ABSI(x) ((x) > 0 ? (x) : -(x))
#define ABS(x) ABSF((x))
#define absf(x) ABSF((x))
// #define absf(x) ABSF((x))
#define absi(x) ABSI((x))
#define abs(x) ABS((x))