SDL_expf: return SDL_exp() instead of SDL_uclibc_exp() for consistency.
This commit is contained in:
parent
54ce812205
commit
bda34ed63c
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue