From 4255867f296d125c79bb34f73ea873689d785ed8 Mon Sep 17 00:00:00 2001 From: Phnod Date: Fri, 25 Aug 2023 00:08:34 -0400 Subject: [PATCH] Increase laser fade out distance --- src/game/gunfx.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/game/gunfx.c b/src/game/gunfx.c index 1f8121dc5..b913a89ec 100644 --- a/src/game/gunfx.c +++ b/src/game/gunfx.c @@ -1054,7 +1054,11 @@ Gfx *lasersightRenderDot(Gfx *gdl) static u32 sp1 = 800; static u32 sp2 = 7000; +#ifndef PLATFORM_N64 // laser fades out farther away + static u32 sp3 = 9000*3; +#else static u32 sp3 = 9000; +#endif static u32 spb = 24; static u32 spi = 6;