SDL_expf: return SDL_exp() instead of SDL_uclibc_exp() for consistency.

This commit is contained in:
Ozkan Sezer 2018-08-05 10:01:01 +03:00
parent b4fe7412f9
commit f45f33bdc0

View File

@ -216,7 +216,7 @@ SDL_expf(float x)
#if defined(HAVE_EXPF) #if defined(HAVE_EXPF)
return expf(x); return expf(x);
#else #else
return (float)SDL_uclibc_exp((double)x); return (float)SDL_exp((double)x);
#endif #endif
} }