mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Unset delay when not pressing anything
Allows for mashing a button to be just as responsive as before
This commit is contained in:
parent
e53ad4edf4
commit
d6d561f0e8
1 changed files with 1 additions and 1 deletions
|
|
@ -1234,7 +1234,7 @@ static void M_UpdateMenuCMD(UINT8 i)
|
||||||
if (menucmd[i].dpad_ud == 0 && menucmd[i].dpad_lr == 0 && menucmd[i].buttons == 0)
|
if (menucmd[i].dpad_ud == 0 && menucmd[i].dpad_lr == 0 && menucmd[i].buttons == 0)
|
||||||
{
|
{
|
||||||
// Reset delay count with no buttons.
|
// Reset delay count with no buttons.
|
||||||
menucmd[i].delayCount = 0;
|
menucmd[i].delay = menucmd[i].delayCount = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue