- For I_GetInputFrac(), just have the caller check if input is synchronised.

This commit is contained in:
Mitchell Richters 2023-02-05 08:40:25 +11:00
parent 9961a66a1f
commit 2020860ffe
3 changed files with 7 additions and 12 deletions

View file

@ -565,7 +565,7 @@ void TryRunTics (void)
oldentertics = entertic;
// update the scale factor for unsynchronised input here.
inputScale = I_GetInputFrac(SyncInput());
inputScale = !SyncInput() ? I_GetInputFrac() : 1.;
// get available tics
NetUpdate ();