From 4c61b076669ea56c58d28a172152e86ffaac6669 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Sun, 16 Aug 2020 07:46:02 +0200 Subject: [PATCH] Scientist Hunt: Fixed crosshair alignment with cl_hudaspect on WEAPON_CANNON --- src/shared/scihunt/w_cannon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/scihunt/w_cannon.c b/src/shared/scihunt/w_cannon.c index 182a0fde..979210ef 100644 --- a/src/shared/scihunt/w_cannon.c +++ b/src/shared/scihunt/w_cannon.c @@ -217,7 +217,7 @@ void w_cannon_crosshair(void) { #ifdef CLIENT static vector cross_pos; - cross_pos = (g_hudres / 2) + [-12,-12]; + cross_pos = g_hudmins + (g_hudres / 2) + [-12,-12]; drawsubpic(cross_pos, [24,24], g_cross_spr, [48/128,24/128], [0.1875, 0.1875], [1,1,1], 1, DRAWFLAG_NORMAL); HUD_DrawAmmo1(); HUD_DrawAmmo2();