mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-25 19:43:22 +00:00
Fix deflated final checkpoint scoring
This commit is contained in:
parent
c7fcf34a8a
commit
15bac24b8d
1 changed files with 2 additions and 2 deletions
|
|
@ -392,8 +392,8 @@ void K_UpdatePowerLevels(player_t *player, UINT8 gradingpoint, boolean forfeit)
|
|||
|
||||
if (exitBonus)
|
||||
{
|
||||
ourinc = FixedMul(ourinc, K_FinalCheckpointPower());
|
||||
theirinc = FixedMul(ourinc, K_FinalCheckpointPower());
|
||||
ourinc = FixedMul(ourinc, FRACUNIT + K_FinalCheckpointPower());
|
||||
theirinc = FixedMul(ourinc, FRACUNIT + K_FinalCheckpointPower());
|
||||
CONS_Debug(DBG_PWRLV, "Final check bonus (%d / %d * %d = %d)\n", prevInc/FRACUNIT, dvs, K_FinalCheckpointPower(), ourinc/FRACUNIT);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue