mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix gamepad rumble freezing when it should stop
This commit is contained in:
parent
8f320b6ac2
commit
5f1b8bb3b8
1 changed files with 14 additions and 17 deletions
|
|
@ -732,12 +732,8 @@ static inline void P_DeviceRumbleTick(void)
|
||||||
UINT16 low = 0;
|
UINT16 low = 0;
|
||||||
UINT16 high = 0;
|
UINT16 high = 0;
|
||||||
|
|
||||||
if (player->mo == NULL)
|
if (player->mo != NULL && !player->exiting)
|
||||||
continue;
|
{
|
||||||
|
|
||||||
if (player->exiting)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if ((player->mo->eflags & MFE_DAMAGEHITLAG) && player->mo->hitlag)
|
if ((player->mo->eflags & MFE_DAMAGEHITLAG) && player->mo->hitlag)
|
||||||
{
|
{
|
||||||
low = high = 65536 / 2;
|
low = high = 65536 / 2;
|
||||||
|
|
@ -751,6 +747,7 @@ static inline void P_DeviceRumbleTick(void)
|
||||||
{
|
{
|
||||||
low = high = 65536 / 32;
|
low = high = 65536 / 32;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
G_PlayerDeviceRumble(i, low, high);
|
G_PlayerDeviceRumble(i, low, high);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue