mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
Whitespace, plus a sprinkling of FIXME markers...
This commit is contained in:
parent
1ca1154964
commit
ec5440fccc
1 changed files with 3 additions and 4 deletions
|
@ -380,7 +380,7 @@ IN_Getimpulse_f (void)
|
|||
0 if held then released, and
|
||||
1.0 if held for the entire time
|
||||
*/
|
||||
float
|
||||
float // FIXME: float? for 4 states? Ugh!
|
||||
CL_KeyState (kbutton_t *key)
|
||||
{
|
||||
float val;
|
||||
|
@ -471,6 +471,7 @@ CL_AdjustAngles (void)
|
|||
if (up || down)
|
||||
V_StopPitchDrift ();
|
||||
|
||||
// FIXME: Need to clean up view angle limits
|
||||
if (cl.viewangles[PITCH] > 80)
|
||||
cl.viewangles[PITCH] = 80;
|
||||
if (cl.viewangles[PITCH] < -70)
|
||||
|
@ -480,10 +481,8 @@ CL_AdjustAngles (void)
|
|||
cl.viewangles[ROLL] = 50;
|
||||
if (cl.viewangles[ROLL] < -50)
|
||||
cl.viewangles[ROLL] = -50;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
CL_BaseMove
|
||||
|
||||
|
@ -528,7 +527,7 @@ CL_BaseMove (usercmd_t *cmd)
|
|||
|
||||
IN_Move ();
|
||||
|
||||
// adjust for chase camera angles
|
||||
// adjust for chase camera angles
|
||||
if (cl.chase
|
||||
&& (chase_active->int_val == 2 || chase_active->int_val == 3))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue