summaryrefslogtreecommitdiff
path: root/source/sv_main.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2008-01-13 02:35:32 +0000
committerAndrey Nazarov <skuller@skuller.net>2008-01-13 02:35:32 +0000
commit8c44753f1294c3ad4fbf64c8c3b390d06cdc99d9 (patch)
tree6f9655701256d79cd33914c23be03b64ca261af6 /source/sv_main.c
parenta0db25a7e12f83e46787f09eca5ec9e4a3de640a (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/sv_main.c')
-rw-r--r--source/sv_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/sv_main.c b/source/sv_main.c
index ebd783d..515682d 100644
--- a/source/sv_main.c
+++ b/source/sv_main.c
@@ -811,7 +811,7 @@ static void SVC_DirectConnect( void ) {
if( sv_qwmod->integer ) {
newcl->pmp.qwmod = sv_qwmod->integer;
newcl->pmp.maxspeed = 320;
- newcl->pmp.upspeed = ( sv_qwmod->integer > 1 ) ? 310 : 350;
+ //newcl->pmp.upspeed = ( sv_qwmod->integer > 1 ) ? 310 : 350;
newcl->pmp.friction = 4;
newcl->pmp.waterfriction = 4;
newcl->pmp.airaccelerate = qtrue;
@@ -1742,7 +1742,7 @@ void SV_Init( void ) {
// set up default pmove parameters
//
sv_pmp.maxspeed = 300;
- sv_pmp.upspeed = 350;
+ //sv_pmp.upspeed = 350;
sv_pmp.friction = 6;
sv_pmp.flyfriction = 9;
sv_pmp.waterfriction = 1;