mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 21:51:09 +00:00
* Fix fp literals
This commit is contained in:
parent
8869e989e4
commit
c61ad8a074
1 changed files with 1 additions and 1 deletions
|
@ -3127,7 +3127,7 @@ void CL_Init( void ) {
|
||||||
// offset for the power function (for style 1, ignored otherwise)
|
// offset for the power function (for style 1, ignored otherwise)
|
||||||
// this should be set to the max rate value
|
// this should be set to the max rate value
|
||||||
cl_mouseAccelOffset = Cvar_Get( "cl_mouseAccelOffset", "5", CVAR_ARCHIVE );
|
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);
|
cl_showMouseRate = Cvar_Get ("cl_showmouserate", "0", 0);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue