Removed fabs overwrite.

This commit is contained in:
Ulysse Cura 2026-06-12 17:19:18 +02:00
parent d7913dcc9f
commit 88177a4a25
1 changed files with 0 additions and 2 deletions

View File

@ -42,8 +42,6 @@ typedef SDL_FRect frect_t;
#define EPSILON 0.000001f
__attribute__((const)) float fabsf(float x);
#define is_equal_to_zero(X) (fabsf(X) <= EPSILON)
#define is_not_zero(X) (fabsf(X) > EPSILON)