mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-24 22:41:27 +00:00
Fix emerald coordinate overflow in failed SS tally (resolves #421).
This commit is contained in:
parent
cebd7df2fc
commit
2f51c75931
1 changed files with 6 additions and 5 deletions
|
|
@ -603,8 +603,7 @@ void Y_IntermissionDrawer(void)
|
|||
{
|
||||
if (emeraldbounces < 3)
|
||||
{
|
||||
emeraldmomy += 1;
|
||||
emeraldy += emeraldmomy;
|
||||
emeraldy += (++emeraldmomy);
|
||||
if (emeraldy > 74)
|
||||
{
|
||||
S_StartSound(NULL, sfx_tink); // tink
|
||||
|
|
@ -616,9 +615,11 @@ void Y_IntermissionDrawer(void)
|
|||
}
|
||||
else
|
||||
{
|
||||
emeraldmomy += 1;
|
||||
emeraldy += emeraldmomy;
|
||||
emeraldx += intertic - 6;
|
||||
if (emeraldy < (vid.height/vid.dupy)+16)
|
||||
{
|
||||
emeraldy += (++emeraldmomy);
|
||||
emeraldx += intertic - 6;
|
||||
}
|
||||
if (emeraldbounces < 1 && emeraldy > 74)
|
||||
{
|
||||
S_StartSound(NULL, sfx_shldls); // nope
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue