From db62654d8e20f6b474cc3d3aafa00de116ad680f Mon Sep 17 00:00:00 2001 From: cypress Date: Thu, 20 Jul 2023 13:21:12 -0400 Subject: [PATCH] VITA/NX: Fix crosshair spread --- source/gl_screen.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/gl_screen.c b/source/gl_screen.c index e2c53f2..39ec3c8 100644 --- a/source/gl_screen.c +++ b/source/gl_screen.c @@ -1387,10 +1387,10 @@ int CrossHairWeapon (void) break; } - i *= 0.75; + i += 10; if (cl.perks & 64) - i *= 0.65; + i *= 0.75; return i; } @@ -1463,10 +1463,10 @@ int CrossHairMaxSpread (void) break; } - i *= 0.75; + i += 10; if (cl.perks & 64) - i *= 0.65; + i *= 0.75; return i; }