mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 20:11:47 +00:00
Merge branch 'fix-postrace-rumble' into 'master'
Fix gamepad rumble freezing when it should stop (resolves #955) Closes #955 See merge request KartKrew/Kart!1857
This commit is contained in:
commit
1d8999923c
1 changed files with 14 additions and 17 deletions
31
src/p_tick.c
31
src/p_tick.c
|
|
@ -733,24 +733,21 @@ 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)
|
|
||||||
{
|
{
|
||||||
low = high = 65536 / 2;
|
if ((player->mo->eflags & MFE_DAMAGEHITLAG) && player->mo->hitlag)
|
||||||
}
|
{
|
||||||
else if (player->sneakertimer > (sneakertime-(TICRATE/2)))
|
low = high = 65536 / 2;
|
||||||
{
|
}
|
||||||
low = high = 65536 / (3+player->numsneakers);
|
else if (player->sneakertimer > (sneakertime-(TICRATE/2)))
|
||||||
}
|
{
|
||||||
else if (((player->boostpower < FRACUNIT) || (player->stairjank > 8))
|
low = high = 65536 / (3+player->numsneakers);
|
||||||
&& P_IsObjectOnGround(player->mo) && player->speed != 0)
|
}
|
||||||
{
|
else if (((player->boostpower < FRACUNIT) || (player->stairjank > 8))
|
||||||
low = high = 65536 / 32;
|
&& P_IsObjectOnGround(player->mo) && player->speed != 0)
|
||||||
|
{
|
||||||
|
low = high = 65536 / 32;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
G_PlayerDeviceRumble(i, low, high);
|
G_PlayerDeviceRumble(i, low, high);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue