mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-03 06:20:56 +00:00
- Exhumed: Repair use key clearing issue from ed2c557297
.
* It's important that the use button is cleared for Exhumed, just not in the game code like it was previously done. * Fixes #971.
This commit is contained in:
parent
1fe1359e5b
commit
a3aa2e877e
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ void GameInput::processInputBits()
|
|||
|
||||
if (buttonMap.ButtonDown(gamefunc_Open))
|
||||
{
|
||||
if (isBlood()) buttonMap.ClearButton(gamefunc_Open);
|
||||
if (isBlood() || isExhumed()) buttonMap.ClearButton(gamefunc_Open);
|
||||
inputBuffer.actions |= SB_OPEN;
|
||||
}
|
||||
if (G_CheckAutorun(buttonMap.ButtonDown(gamefunc_Run)))
|
||||
|
|
Loading…
Reference in a new issue