- Avoid testing if we're synchronising input twice in getInput().

This commit is contained in:
Mitchell Richters 2023-03-27 20:01:56 +11:00
parent 79745668a6
commit 6c2717fcde

View file

@ -183,14 +183,18 @@ void getInput(const double scaleAdjust, PlayerAngles* const plrAngles, InputPack
HIDInput hidInput{};
getHidInput(&hidInput);
ApplyGlobalInput(&hidInput, &inputBuffer);
gi->GetInput(&hidInput, &inputBuffer, &input, !SyncInput() ? scaleAdjust : 1.);
// Directly update the camera angles if we're unsynchronised.
if (!SyncInput())
{
gi->GetInput(&hidInput, &inputBuffer, &input, scaleAdjust);
plrAngles->CameraAngles.Yaw += DAngle::fromDeg(input.avel);
plrAngles->CameraAngles.Pitch += DAngle::fromDeg(input.horz);
}
else
{
gi->GetInput(&hidInput, &inputBuffer, &input, 1);
}
if (packet)
{