From 3696463aa88eda09aed5f96c32329afece5609fc Mon Sep 17 00:00:00 2001 From: Monster Iestyn Date: Fri, 14 Apr 2017 17:16:09 +0100 Subject: [PATCH] Just to make toaster happy I'll do this :V --- src/st_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index 2197b0c3e..36854bbbf 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -863,7 +863,7 @@ static void ST_drawFirstPersonHUD(void) if (!airtime) return; // No air timers are active, nothing would be drawn anyway - airtime -= 1; // The original code was all n*TICRATE + 1, so let's remove 1 tic for simplicity + airtime--; // The original code was all n*TICRATE + 1, so let's remove 1 tic for simplicity if (airtime > 11*TICRATE) return; // Not time to draw any drown numbers yet