mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed responsiveness issues with Blood's weapon selection.
This shouldn't really do anything and might point to some deeper implementation flaw.
This commit is contained in:
parent
b0c1140649
commit
41cc5cac34
1 changed files with 2 additions and 1 deletions
|
@ -183,7 +183,8 @@ void ctrlGetInput(void)
|
|||
|
||||
gInput.keyFlags.word |= BitsToSend.word;
|
||||
gInput.useFlags.byte |= UsesToSend.byte;
|
||||
gInput.newWeapon = WeaponToSend;
|
||||
if (WeaponToSend != 0)
|
||||
gInput.newWeapon = WeaponToSend;
|
||||
|
||||
BitsToSend.word = 0;
|
||||
UsesToSend.byte = 0;
|
||||
|
|
Loading…
Reference in a new issue