Corrected function signature on SDL_strtod_inline() (thanks, Axel!).
Fixes Bugzilla #1774.
1.1 --- a/include/SDL_stdinc.h Fri Mar 29 21:25:02 2013 -0400
1.2 +++ b/include/SDL_stdinc.h Fri Mar 29 21:29:57 2013 -0400
1.3 @@ -592,7 +592,7 @@
1.4
1.5 extern DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp);
1.6 #ifdef HAVE_STRTOD
1.7 -SDL_FORCE_INLINE Uint64 SDL_strtod_inline(const char *str, char **endp) { return strtod(str, endp); }
1.8 +SDL_FORCE_INLINE double SDL_strtod_inline(const char *str, char **endp) { return strtod(str, endp); }
1.9 #define SDL_strtod SDL_strtod_inline
1.10 #endif
1.11