Slower margin boost

This commit is contained in:
Antonio Martinez 2024-09-05 01:21:07 -07:00
parent c4fc86b668
commit bf2b31a833

View file

@ -468,7 +468,7 @@ fixed_t K_GetKartGameSpeedScalar(SINT8 value)
value = 3;
fixed_t base = ((13 + (3*value)) << FRACBITS) / 16;
fixed_t duel = overtimecheckpoints*(1<<FRACBITS)/3;
fixed_t duel = overtimecheckpoints*(1<<FRACBITS)/6;
return base + duel;
}