From 8a4bdbabe1b95502227e1993d0101da9306726d6 Mon Sep 17 00:00:00 2001 From: cypress Date: Sat, 22 Jul 2023 12:12:57 -0400 Subject: [PATCH] Tweak crosshair values to match CoD5 better --- source/gl_draw.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/source/gl_draw.c b/source/gl_draw.c index bf436f8..d63bae6 100644 --- a/source/gl_draw.c +++ b/source/gl_draw.c @@ -940,10 +940,11 @@ int CrossHairWeapon (void) break; } - i *= 0.75; + i *= 0.68; + i += 6; if (cl.perks & 64) - i *= 0.65; + i *= 0.75; return i; } @@ -1016,10 +1017,11 @@ int CrossHairMaxSpread (void) break; } - i *= 0.75; + i *= 0.68; + i += 6; if (cl.perks & 64) - i *= 0.65; + i *= 0.75; return i; }