From 23cff1e38471535b271b765a7f8466de39cfac64 Mon Sep 17 00:00:00 2001 From: Roman Fomin Date: Sun, 24 Dec 2023 01:36:19 +0700 Subject: [PATCH] fix automap crosshair --- src/am_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/am_map.c b/src/am_map.c index 9a00d1d6..4a3899d2 100644 --- a/src/am_map.c +++ b/src/am_map.c @@ -2236,7 +2236,7 @@ static void AM_drawCrosshair(int color) // [crispy] do not draw the useless dot on the player arrow if (!followplayer) { - fb[(f_w*(f_h+1))/2] = color; // single point for now + PUTDOT((f_w + 1) / 2, (f_h + 1) / 2, color); // single point for now } }