mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't continue ticking the cecho timer infinitely into the negatives (resolves #219)
This commit is contained in:
parent
4b1cef0f20
commit
42919044e9
1 changed files with 2 additions and 1 deletions
|
|
@ -996,7 +996,8 @@ void HU_Ticker(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cechotimer--;
|
if (cechotimer)
|
||||||
|
cechotimer--;
|
||||||
|
|
||||||
if (gamestate != GS_LEVEL)
|
if (gamestate != GS_LEVEL)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue