aboutsummaryrefslogtreecommitdiffstats
path: root/engine/slop_menu.asm
diff options
context:
space:
mode:
Diffstat (limited to 'engine/slop_menu.asm')
-rw-r--r--engine/slop_menu.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/slop_menu.asm b/engine/slop_menu.asm
index 7cb779a2..38c5bdcf 100644
--- a/engine/slop_menu.asm
+++ b/engine/slop_menu.asm
@@ -33,7 +33,7 @@ SlopMenu::
ld de, SlopMenuText
call PlaceString
; ON marker for the NOWILD toggle (item 10 -> row 13)
- ld a, [wSlopNoWild]
+ ld a, [wUnusedFlag]
and a
jr z, .nowildOff
hlcoord 13, 13
@@ -394,9 +394,9 @@ SlopMaxCoins:
; NOWILD toggle: no wild encounters (hooked in TryDoWildEncounter)
SlopToggleNoWild:
- ld a, [wSlopNoWild]
+ ld a, [wUnusedFlag]
xor $01
- ld [wSlopNoWild], a
+ ld [wUnusedFlag], a
and a
ret