Skip to content

Commit

Permalink
* (bug 3712) MSVC build fix s/strtof/strtod/ (Pat Raynor <raynorpat@g…
Browse files Browse the repository at this point in the history
…mail.com>)
  • Loading branch information
timangus committed Jul 9, 2008
1 parent de81319 commit 3c9dc98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/qcommon/q_shared.c
Expand Up @@ -737,7 +737,7 @@ qboolean Q_isanumber( const char *s )
if( *s == '\0' )
return qfalse;

strtof( s, &p );
strtod( s, &p );

return *p == '\0';
#endif
Expand Down

0 comments on commit 3c9dc98

Please sign in to comment.