]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
reworked cl.viewangles bounding of roll angle, and simplified pitch
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 12 Feb 2008 01:37:56 +0000 (01:37 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 12 Feb 2008 01:37:56 +0000 (01:37 +0000)
handling

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8081 d7cf8633-e32d-0410-b094-e92efae38249

cl_input.c

index 1d5127db6203ddf80e392d9eed4536368effed56..b594e93324015f433c9838cf1fc9f76cbbf15834 100644 (file)
@@ -490,17 +490,10 @@ void CL_AdjustAngles (void)
                V_StopPitchDrift ();
 
        cl.viewangles[YAW] = ANGLEMOD(cl.viewangles[YAW]);
-       cl.viewangles[PITCH] = ANGLEMOD(cl.viewangles[PITCH]);
-       cl.viewangles[ROLL] = ANGLEMOD(cl.viewangles[ROLL]);
        if (cl.viewangles[YAW] >= 180)
                cl.viewangles[YAW] -= 360;
-       if (cl.viewangles[PITCH] >= 180)
-               cl.viewangles[PITCH] -= 360;
-       if (cl.viewangles[ROLL] >= 180)
-               cl.viewangles[ROLL] -= 360;
-
-       cl.viewangles[PITCH] = bound (in_pitch_min.value, cl.viewangles[PITCH], in_pitch_max.value);
-       cl.viewangles[ROLL] = bound(-50, cl.viewangles[ROLL], 50);
+       cl.viewangles[PITCH] = bound(in_pitch_min.value, cl.viewangles[PITCH], in_pitch_max.value);
+       cl.viewangles[ROLL] = bound(-180, cl.viewangles[ROLL], 180);
 }
 
 int cl_ignoremousemoves = 2;