mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- Avoid testing if we're synchronising input twice in getInput()
.
This commit is contained in:
parent
79745668a6
commit
6c2717fcde
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue