mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-04 23:41:07 +00:00
We use FRACBITS out there
This commit is contained in:
parent
733cf20a10
commit
2c1d5a72b6
1 changed files with 1 additions and 1 deletions
|
@ -5066,7 +5066,7 @@ static void K_KartDrift(player_t *player, boolean onground)
|
||||||
// and will then wrongdrift or have their sparks removed because of this.
|
// and will then wrongdrift or have their sparks removed because of this.
|
||||||
// This fixes this problem.
|
// This fixes this problem.
|
||||||
if (player->kartstuff[k_pogospring] == 2 && player->mo->scale > FRACUNIT)
|
if (player->kartstuff[k_pogospring] == 2 && player->mo->scale > FRACUNIT)
|
||||||
minspeed = (10 * FRACUNIT);
|
minspeed = (10<<FRACBITS);
|
||||||
|
|
||||||
INT32 dsone = K_GetKartDriftSparkValue(player);
|
INT32 dsone = K_GetKartDriftSparkValue(player);
|
||||||
INT32 dstwo = dsone*2;
|
INT32 dstwo = dsone*2;
|
||||||
|
|
Loading…
Reference in a new issue