From 25df6ca0c816431a175a6b16d006fabb1dd0f5b6 Mon Sep 17 00:00:00 2001 From: cypress Date: Sat, 14 Sep 2024 12:14:23 -0700 Subject: [PATCH] PSP/CTR: Reset Ammo Time on new Level --- source/cl_hud.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/cl_hud.c b/source/cl_hud.c index 7d9488e..7463e24 100644 --- a/source/cl_hud.c +++ b/source/cl_hud.c @@ -230,6 +230,9 @@ void HUD_NewMap (void) round_center_x = (vid.width - sb_round[0]->width) /2; round_center_y = (vid.height - sb_round[0]->height) /2; + + hud_maxammo_starttime = 0; + hud_maxammo_endtime = 0; }