mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
SDL_expf: return SDL_exp() instead of SDL_uclibc_exp() for consistency.
This commit is contained in:
parent
b4fe7412f9
commit
f45f33bdc0
@ -216,7 +216,7 @@ SDL_expf(float x)
|
||||
#if defined(HAVE_EXPF)
|
||||
return expf(x);
|
||||
#else
|
||||
return (float)SDL_uclibc_exp((double)x);
|
||||
return (float)SDL_exp((double)x);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user