summaryrefslogtreecommitdiff
path: root/src/decoration_inventory.c
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2018-04-06 17:14:07 -0700
committerGitHub <noreply@github.com>2018-04-06 17:14:07 -0700
commit18a6fb5c3fcdc852a8ee805ba02b2807938e1de8 (patch)
tree8b31e761c5b2b03e2b5200baec6755f6a3273fe5 /src/decoration_inventory.c
parented5847cb41c48357d83b92823e08393a1ca54bdd (diff)
parent9e4bf55716fb5a27bc2f6eee4a489e48327eac3f (diff)
Merge pull request #586 from PikalaxALT/nakamura
Nakamura debug menu
Diffstat (limited to 'src/decoration_inventory.c')
-rw-r--r--src/decoration_inventory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decoration_inventory.c b/src/decoration_inventory.c
index 8f7f5eb92..d4ef2d589 100644
--- a/src/decoration_inventory.c
+++ b/src/decoration_inventory.c
@@ -64,7 +64,7 @@ bool8 sub_8133FE4(u8 decorIdx)
return FALSE;
}
-bool8 IsThereStorageSpaceForDecoration(u8 decorIdx)
+bool8 GiveDecoration(u8 decorIdx)
{
u8 invIdx;
s8 invSlot;
@@ -167,11 +167,11 @@ u8 sub_81341D4(void)
#if DEBUG
-void debug_sub_814A3A8(void)
+void Debug_GiveAllDecorations(void)
{
u8 decor;
for (decor = 0; decor < DECOR_COUNT; decor++)
- IsThereStorageSpaceForDecoration(decor);
+ GiveDecoration(decor);
}
#endif