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:
Ozkan Sezer 2011-08-25 21:37:34 +00:00
parent 9b721b0a01
commit 6817f5bfc9
5 changed files with 6 additions and 6 deletions

View File

@ -159,7 +159,10 @@ void IN_Move (usercmd_t *cmd)
cl.viewangles[YAW] -= m_yaw.value * dmx;
if (in_mlook.state & 1)
{
if (dmx || dmy)
V_StopPitchDrift ();
}
if ( (in_mlook.state & 1) && !(in_strafe.state & 1))
{

View File

@ -197,6 +197,7 @@ void V_DriftPitch (void)
if ( cl.driftmove > v_centermove.value)
{
if (lookspring.value)
V_StartPitchDrift ();
}
return;

View File

@ -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>

View File

@ -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>

View File

@ -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.