diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-01-13 02:35:32 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-01-13 02:35:32 +0000 |
commit | 8c44753f1294c3ad4fbf64c8c3b390d06cdc99d9 (patch) | |
tree | 6f9655701256d79cd33914c23be03b64ca261af6 /source/cl_parse.c | |
parent | a0db25a7e12f83e46787f09eca5ec9e4a3de640a (diff) |
New minor Q2PRO protocol version, 1012.
Save up to 6 bits on each usercmd vector component.
Measure frame duration more accurately in CL_UpdateCmd.
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r-- | source/cl_parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cl_parse.c b/source/cl_parse.c index 5f2fb93..2a43e1c 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -844,7 +844,7 @@ static void CL_ParseServerData( void ) { cl.pmp.speedMultiplier = 1; cl.pmp.maxspeed = 300; - cl.pmp.upspeed = 350; +// cl.pmp.upspeed = 350; cl.pmp.friction = 6; cl.pmp.waterfriction = 1; cl.pmp.flyfriction = 9; @@ -894,7 +894,7 @@ static void CL_ParseServerData( void ) { Com_DPrintf( "Q2PRO QWMod enabled\n" ); cl.pmp.maxspeed = 320; - cl.pmp.upspeed = ((cl.pmp.qwmod == 2) ? 310 : 350); + //cl.pmp.upspeed = ((cl.pmp.qwmod == 2) ? 310 : 350); cl.pmp.friction = 4; cl.pmp.waterfriction = 4; cl.pmp.airaccelerate = qtrue; |