From: divverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Date: Mon, 12 Jul 2010 18:04:36 +0000 (+0000)
Subject: Slightly better cycle default
X-Git-Tag: xonotic-v0.1.0preview~374
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1483f8d0b5602fc182b0ff0ced588ebaedf44c54;p=xonotic%2Fdarkplaces.git

Slightly better cycle default

From: MirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10288 d7cf8633-e32d-0410-b094-e92efae38249
::stable-branch::merge=ba50505a7c2b8bc1bf107feebef1ce668dfc1873
---

diff --git a/darkplaces.txt b/darkplaces.txt
index 84c89dad..6c23bd50 100644
--- a/darkplaces.txt
+++ b/darkplaces.txt
@@ -397,7 +397,7 @@ cl_beams_quakepositionhack                        1                   makes your
 cl_bob                                            0.02                view bobbing amount
 cl_bobcycle                                       0.6                 view bobbing speed
 cl_bobroll                                        0                   view rolling amount
-cl_bobrollcycle                                   0.75                view rolling speed
+cl_bobrollcycle                                   0.8                 view rolling speed
 cl_bobrollairtime                                 0.05                how fast the view rolls back when you stop touching the ground
 cl_bobmodel                                       1                   enables gun bobbing
 cl_bobmodel_side                                  0.05                gun bobbing sideways sway amount
diff --git a/view.c b/view.c
index b0dbaff6..3fb5ed65 100644
--- a/view.c
+++ b/view.c
@@ -40,7 +40,7 @@ cvar_t cl_bob = {CVAR_SAVE, "cl_bob","0.02", "view bobbing amount"};
 cvar_t cl_bobcycle = {CVAR_SAVE, "cl_bobcycle","0.6", "view bobbing speed"};
 cvar_t cl_bobup = {CVAR_SAVE, "cl_bobup","0.5", "view bobbing adjustment that makes the up or down swing of the bob last longer"};
 cvar_t cl_bobroll = {CVAR_SAVE, "cl_bobroll","0", "view rolling amount"};
-cvar_t cl_bobrollcycle = {CVAR_SAVE, "cl_bobrollcycle","0.75", "view rolling speed"};
+cvar_t cl_bobrollcycle = {CVAR_SAVE, "cl_bobrollcycle","0.8", "view rolling speed"};
 cvar_t cl_bobrollairtime = {CVAR_SAVE, "cl_bobrollairtime","0.05", "how fast the view rolls back when you stop touching the ground"};
 cvar_t cl_bobmodel = {CVAR_SAVE, "cl_bobmodel", "1", "enables gun bobbing"};
 cvar_t cl_bobmodel_side = {CVAR_SAVE, "cl_bobmodel_side", "0.15", "gun bobbing sideways sway amount"};