diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-04 08:49:05 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-05 22:43:26 -0400 |
commit | 56d822f9e3fe9ed65377151c0b839e4eaa7caea9 (patch) | |
tree | b12164fe944f4d340bcbed1aa1e599d8d1d4f757 /src/decoration_inventory.c | |
parent | b5dbdbc4b918b1fd3b60084ea92ce9ad6830733b (diff) |
Renaming
Diffstat (limited to 'src/decoration_inventory.c')
-rw-r--r-- | src/decoration_inventory.c | 6 |
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 |