From b36d3f266d4c104785bcd2a026b6a38c37357856 Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Sun, 13 Nov 2022 15:26:53 +1000 Subject: [PATCH] Fix laser dot not appearing --- src/game/lv.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/game/lv.c b/src/game/lv.c index 0b874f804..3dd3ab609 100644 --- a/src/game/lv.c +++ b/src/game/lv.c @@ -1203,6 +1203,13 @@ Gfx *lvRender(Gfx *gdl) } } } else { + s32 weaponnum = bgunGetWeaponNum(HAND_RIGHT); + + if (weaponnum >= WEAPON_FALCON2 && weaponnum <= WEAPON_FALCON2_SCOPE) { + // Have to call this to make the laser dot appear + func0f061d54(HAND_RIGHT, 0, 0); + } + g_Vars.currentplayer->lookingatprop.prop = NULL; } profileEnd(PROFILEMARKER_LVR_LOOKINGAT);