From 42919044e99f2b01d324bf1b9429c452af627b71 Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 14 Feb 2022 14:52:04 +0000 Subject: [PATCH] Don't continue ticking the cecho timer infinitely into the negatives (resolves #219) --- src/hu_stuff.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hu_stuff.c b/src/hu_stuff.c index 498daad9a..525e19b57 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -996,7 +996,8 @@ void HU_Ticker(void) } } - cechotimer--; + if (cechotimer) + cechotimer--; if (gamestate != GS_LEVEL) {