From 2f404873b8b40ff41cfdb24eb862eb9a8b8fc3b6 Mon Sep 17 00:00:00 2001 From: Kara Alexandra Date: Sat, 16 May 2026 21:27:22 -0500 Subject: [PATCH] Fix dungeon indicator not updating on falling into dungeons --- gk/loot_hud.asm | 4 ++++ hooks.asm | 3 +++ 2 files changed, 7 insertions(+) diff --git a/gk/loot_hud.asm b/gk/loot_hud.asm index 943b6e9..9c4ecd2 100644 --- a/gk/loot_hud.asm +++ b/gk/loot_hud.asm @@ -5,6 +5,10 @@ NOP pullpc ClearLootHUD: + LDA.b GameMode + CMP.b #$07 + BNE UpdateLootHUD + PHP REP #$20 LDA.w #!BlankTile : STA.w EnemyDropIndicator diff --git a/hooks.asm b/hooks.asm index 0456f84..ee74a56 100755 --- a/hooks.asm +++ b/hooks.asm @@ -2765,6 +2765,9 @@ JSL AdjustDefaultGraphics org $828190 JSL LoadDungeonIndicator +org $829AA2 +JSL LoadDungeonIndicator + ;================================================================================ ; Special Weapons Modes ;--------------------------------------------------------------------------------