diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-03-15 20:31:31 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-03-15 20:31:31 -0400 |
commit | 9c2e157123903ba18ee51655c42c7304517b37cc (patch) | |
tree | 1a261c11079e9d620f9d487599ee942a240955b3 /src/pokemon_storage_system_3.c | |
parent | d30e2597a05d2a887dca2ca3ef2ca000701dfd63 (diff) |
Start documenting PSS
Diffstat (limited to 'src/pokemon_storage_system_3.c')
-rw-r--r-- | src/pokemon_storage_system_3.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pokemon_storage_system_3.c b/src/pokemon_storage_system_3.c index 5e0cd7f3c..48007ad0f 100644 --- a/src/pokemon_storage_system_3.c +++ b/src/pokemon_storage_system_3.c @@ -1179,7 +1179,7 @@ static void Cb_DepositMenu(u8 taskId) { case 0: PrintStorageActionText(PC_TEXT_DEPOSIT_IN_WHICH_BOX); - sub_808C854(&sPSSData->field_1E5C, TAG_TILE_A, TAG_PAL_DAC7, 3, FALSE); + LoadBoxSelectionPopupSpriteGfx(&sPSSData->field_1E5C, TAG_TILE_A, TAG_PAL_DAC7, 3, FALSE); sub_808C940(gUnknown_20397B6); sPSSData->state++; break; @@ -1193,7 +1193,7 @@ static void Cb_DepositMenu(u8 taskId) { ClearBottomWindow(); sub_808C950(); - sub_808C8FC(); + FreeBoxSelectionPopupSpriteGfx(); SetPSSCallback(Cb_MainPSS); } else @@ -1204,7 +1204,7 @@ static void Cb_DepositMenu(u8 taskId) sub_808FE54(2); ClearBottomWindow(); sub_808C950(); - sub_808C8FC(); + FreeBoxSelectionPopupSpriteGfx(); sPSSData->state = 2; } else @@ -1816,7 +1816,7 @@ static void Cb_JumpBox(u8 taskId) { case 0: PrintStorageActionText(PC_TEXT_JUMP_TO_WHICH_BOX); - sub_808C854(&sPSSData->field_1E5C, TAG_TILE_A, TAG_PAL_DAC7, 3, FALSE); + LoadBoxSelectionPopupSpriteGfx(&sPSSData->field_1E5C, TAG_TILE_A, TAG_PAL_DAC7, 3, FALSE); sub_808C940(StorageGetCurrentBox()); sPSSData->state++; break; @@ -1829,7 +1829,7 @@ static void Cb_JumpBox(u8 taskId) default: ClearBottomWindow(); sub_808C950(); - sub_808C8FC(); + FreeBoxSelectionPopupSpriteGfx(); if (sPSSData->newCurrBoxId == 201 || sPSSData->newCurrBoxId == StorageGetCurrentBox()) { sub_80920FC(TRUE); |