mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-02 18:21:06 +00:00
- For I_GetInputFrac()
, just have the caller check if input is synchronised.
This commit is contained in:
parent
9961a66a1f
commit
2020860ffe
3 changed files with 7 additions and 12 deletions
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue