[quake3-commits] r1854 - trunk/code/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Feb 4 12:22:42 EST 2011


Author: tma
Date: 2011-02-04 12:22:42 -0500 (Fri, 04 Feb 2011)
New Revision: 1854

Modified:
   trunk/code/client/cl_main.c
Log:
* Fix fp literals

Modified: trunk/code/client/cl_main.c
===================================================================
--- trunk/code/client/cl_main.c	2011-02-04 17:18:40 UTC (rev 1853)
+++ trunk/code/client/cl_main.c	2011-02-04 17:22:42 UTC (rev 1854)
@@ -3127,7 +3127,7 @@
 	// offset for the power function (for style 1, ignored otherwise)
 	// this should be set to the max rate value
 	cl_mouseAccelOffset = Cvar_Get( "cl_mouseAccelOffset", "5", CVAR_ARCHIVE );
-	Cvar_CheckRange(cl_mouseAccelOffset, 0.001, 50000.0, qfalse);
+	Cvar_CheckRange(cl_mouseAccelOffset, 0.001f, 50000.0f, qfalse);
 
 	cl_showMouseRate = Cvar_Get ("cl_showmouserate", "0", 0);
 



More information about the quake3-commits mailing list