summaryrefslogtreecommitdiff
path: root/engine/decorations.asm
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2015-12-29 16:44:37 -0500
committerPikalaxALT <PikalaxALT@gmail.com>2015-12-29 16:44:37 -0500
commit2a263629a40e201b1702e2f4e65f1c61360cc2b2 (patch)
treefd05f8f0ad49d88b032dc9e10af85a42dfa0e402 /engine/decorations.asm
parent9bbb65166e4f7674bbdec7b1314b0cf42b43a923 (diff)
Item effects, post-battle, and decoration flags
Diffstat (limited to 'engine/decorations.asm')
-rwxr-xr-xengine/decorations.asm14
1 files changed, 7 insertions, 7 deletions
diff --git a/engine/decorations.asm b/engine/decorations.asm
index 7ab4c65c9..774a8589a 100755
--- a/engine/decorations.asm
+++ b/engine/decorations.asm
@@ -207,7 +207,7 @@ DecoBedMenu: ; 268b5
FindOwnedBeds: ; 268bd
ld hl, .beds
- ld c, DECO_BEDS
+ ld c, BEDS
jp FindOwnedDecosInCategory
; 268c5
@@ -228,7 +228,7 @@ DecoCarpetMenu: ; 268ca
FindOwnedCarpets: ; 268d2
ld hl, .carpets
- ld c, DECO_CARPETS
+ ld c, CARPETS
jp FindOwnedDecosInCategory
; 268da
@@ -249,7 +249,7 @@ DecoPlantMenu: ; 268df
FindOwnedPlants: ; 268e7
ld hl, .plants
- ld c, DECO_0B
+ ld c, PLANTS
jp FindOwnedDecosInCategory
; 268ef
@@ -269,7 +269,7 @@ DecoPosterMenu: ; 268f3
FindOwnedPosters: ; 268fb
ld hl, .posters
- ld c, DECO_POSTERS
+ ld c, POSTERS
jp FindOwnedDecosInCategory
; 26903
@@ -290,7 +290,7 @@ DecoConsoleMenu: ; 26908
FindOwnedConsoles: ; 26910
ld hl, .consoles
- ld c, DECO_CONSOLES
+ ld c, CONSOLES
jp FindOwnedDecosInCategory
; 26918
@@ -311,7 +311,7 @@ DecoOrnamentMenu: ; 2691d
FindOwnedOrnaments: ; 26925
ld hl, .ornaments
- ld c, DECO_DOLLS
+ ld c, DOLLS
jp FindOwnedDecosInCategory
; 2692d
@@ -351,7 +351,7 @@ DecoBigDollMenu: ; 26945
FindOwnedBigDolls: ; 2694d
ld hl, .big_dolls
- ld c, DECO_BIG_DOLLS
+ ld c, BIG_DOLLS
jp FindOwnedDecosInCategory
; 26955