diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-07-17 16:02:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-17 16:02:10 -0400 |
commit | 50e48898d2ab25b792b563825dca79d327bcb542 (patch) | |
tree | bde6dce5dbebe6faf2ea498340520917543d60da /src/battle_factory_screen.c | |
parent | 300f36654d17f750738d3e215aa9b2dfda7c9ef3 (diff) | |
parent | 43c48d95c269e2024afb6ef72da4e2ff4f2ce339 (diff) |
Merge pull request #1088 from GriffinRichards/doc-starterchoose
Document starter_choose.c
Diffstat (limited to 'src/battle_factory_screen.c')
-rw-r--r-- | src/battle_factory_screen.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/battle_factory_screen.c b/src/battle_factory_screen.c index 0b0544555..388881a1c 100644 --- a/src/battle_factory_screen.c +++ b/src/battle_factory_screen.c @@ -24,6 +24,7 @@ #include "pokedex.h" #include "util.h" #include "trainer_pokemon_sprites.h" +#include "starter_choose.h" #include "constants/battle_frontier.h" #include "constants/songs.h" #include "constants/rgb.h" @@ -132,8 +133,6 @@ struct FactorySwapMonsStruct bool8 unk30; }; -extern const u32 gUnknown_085B18AC[]; - // This file's functions. static void sub_819A44C(struct Sprite *sprite); static void CB2_InitSelectScreen(void); @@ -263,7 +262,7 @@ static const struct SpriteSheet gUnknown_086103BC[] = static const struct CompressedSpriteSheet gUnknown_086103E4[] = { - {gUnknown_085B18AC, 0x800, TAG_TILE_64}, + {gPokeballSelection_Gfx, 0x800, TAG_TILE_64}, {}, }; @@ -616,7 +615,7 @@ static const struct SpriteSheet gUnknown_08610650[] = static const struct CompressedSpriteSheet gUnknown_086106A0[] = { - {gUnknown_085B18AC, 0x800, TAG_TILE_64}, + {gPokeballSelection_Gfx, 0x800, TAG_TILE_64}, {}, }; |