mirror of
https://github.com/yawut/SDL.git
synced 2026-04-23 09:07:30 -05:00
Fixed infinite recursion (thanks, Rainer!).
This commit is contained in:
parent
d6fda58241
commit
ccf4a46f60
|
|
@ -31,8 +31,8 @@
|
|||
#undef SDL_atof
|
||||
char *SDL_itoa(int value, char *str, int radix) { return SDL_itoa_inline(value, str, radix); }
|
||||
char *SDL_uitoa(unsigned int value, char *str, int radix) { return SDL_uitoa_inline(value, str, radix); }
|
||||
int SDL_atoi(const char *str) { return SDL_atoi(str); }
|
||||
double SDL_atof(const char *str) { return SDL_atof(str); }
|
||||
int SDL_atoi(const char *str) { return SDL_atoi_inline(str); }
|
||||
double SDL_atof(const char *str) { return SDL_atof_inline(str); }
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user