mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-27 22:42:09 +00:00
* (bug 3712) MSVC build fix s/strtof/strtod/ (Pat Raynor <raynorpat@gmail.com>)
This commit is contained in:
parent
de8131938c
commit
3c9dc98d04
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue