From 69803d4fbc48b58f6c583c0ed87ea9ee3d3eddfd Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Thu, 30 Nov 2023 18:44:56 +0100 Subject: [PATCH] check for automapactive instead of automap_on in HU_Ticker() --- src/hu_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hu_stuff.c b/src/hu_stuff.c index 93637c95..7ef247ea 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -1627,7 +1627,7 @@ void HU_Ticker(void) // draw the automap widgets if automap is displayed - if (automap_on) + if (automapactive) { HU_cond_build_widget(&w_monsec, hud_level_stats); HU_cond_build_widget(&w_sttime, hud_level_time);