r1423 - trunk/code/qcommon

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Jul 9 17:22:29 EDT 2008


Author: tma
Date: 2008-07-09 17:22:29 -0400 (Wed, 09 Jul 2008)
New Revision: 1423

Modified:
   trunk/code/qcommon/q_shared.c
Log:
* (bug 3712) MSVC build fix s/strtof/strtod/ (Pat Raynor <raynorpat at gmail.com>)


Modified: trunk/code/qcommon/q_shared.c
===================================================================
--- trunk/code/qcommon/q_shared.c	2008-07-08 16:23:06 UTC (rev 1422)
+++ trunk/code/qcommon/q_shared.c	2008-07-09 21:22:29 UTC (rev 1423)
@@ -737,7 +737,7 @@
 	if( *s == '\0' )
 		return qfalse;
 
-	strtof( s, &p );
+	strtod( s, &p );
 
 	return *p == '\0';
 #endif




More information about the quake3-commits mailing list