- 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:
Mitchell Richters 2023-09-23 09:51:45 +10:00
parent 1fe1359e5b
commit a3aa2e877e

View file

@ -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)))