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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue