- Duke: If we enter playerCenterView() and put SB_CENTERVIEW() back on, we need to null and lock input.

This commit is contained in:
Mitchell Richters 2023-03-26 14:36:12 +11:00
parent 0da2afe3d7
commit 776c58c58a
2 changed files with 3 additions and 1 deletions

View file

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

View file

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