mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-05 07:21:07 +00:00
- Duke: If we enter playerCenterView()
and put SB_CENTERVIEW()
back on, we need to null and lock input.
This commit is contained in:
parent
0da2afe3d7
commit
776c58c58a
2 changed files with 3 additions and 1 deletions
|
@ -876,6 +876,8 @@ void playerCenterView(int snum)
|
|||
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() == 0)
|
||||
{
|
||||
p->sync.actions |= SB_CENTERVIEW;
|
||||
p->sync.horz = 0;
|
||||
setForcedSyncInput(snum);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -351,7 +351,7 @@ struct player_struct
|
|||
return;
|
||||
|
||||
const bool returnlock = cl_dukepitchmode & kDukePitchLockReturn;
|
||||
const bool centertest = abs(GetActor()->spr.Angles.Pitch.Degrees()) > 2.2370;
|
||||
const bool centertest = abs(GetActor()->spr.Angles.Pitch.Degrees()) > 2.2370; // Build horizon value of 5.
|
||||
|
||||
if ((centertest && returnlock) || !sync.horz)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue