mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
mlook and lookspring fixes by Jacques Krige :
http://www.quake-1.com/docs/quakesrc.org/1.html git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@481 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
9b721b0a01
commit
6817f5bfc9
5 changed files with 6 additions and 6 deletions
|
@ -159,7 +159,10 @@ void IN_Move (usercmd_t *cmd)
|
|||
cl.viewangles[YAW] -= m_yaw.value * dmx;
|
||||
|
||||
if (in_mlook.state & 1)
|
||||
V_StopPitchDrift ();
|
||||
{
|
||||
if (dmx || dmy)
|
||||
V_StopPitchDrift ();
|
||||
}
|
||||
|
||||
if ( (in_mlook.state & 1) && !(in_strafe.state & 1))
|
||||
{
|
||||
|
|
|
@ -197,7 +197,8 @@ void V_DriftPitch (void)
|
|||
|
||||
if ( cl.driftmove > v_centermove.value)
|
||||
{
|
||||
V_StartPitchDrift ();
|
||||
if (lookspring.value)
|
||||
V_StartPitchDrift ();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -256,7 +256,6 @@ Compile time options include
|
|||
<LI>Test usb keyboards. Do the keypads work? Make the OSX apple key work.</LI>
|
||||
<LI>Complete the unix user directories support</LI>
|
||||
<LI>Finalize OSX automatic updating feature</LI>
|
||||
<LI>Fix Centerview (V_StartPitchDrift)</LI>
|
||||
<LI>There is still an unnecessary screen render on program init under some conditions, when using the "-window/-fullscreen" options.</LI>
|
||||
</UL>
|
||||
</P>
|
||||
|
|
|
@ -175,7 +175,6 @@ Alternatively, have a look at <bf>Makefile.darwin</bf> for more instructions on
|
|||
<item>Test usb keyboards. Do the keypads work? Make the OSX apple key work.
|
||||
<item>Complete the unix user directories support
|
||||
<item>Finalize OSX automatic updating feature
|
||||
<item>Fix Centerview (V_StartPitchDrift)
|
||||
<item>There is still an unnecessary screen render on program init under some conditions, when using the "-window/-fullscreen" options.
|
||||
</itemize>
|
||||
|
||||
|
|
|
@ -308,8 +308,6 @@
|
|||
|
||||
o Finalize OSX automatic updating feature
|
||||
|
||||
o Fix Centerview (V_StartPitchDrift)
|
||||
|
||||
o There is still an unnecessary screen render on program init under
|
||||
some conditions, when using the "-window/-fullscreen" options.
|
||||
|
||||
|
|
Loading…
Reference in a new issue