diff options
author | yenatch <yenatch@gmail.com> | 2017-07-17 19:40:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-17 19:40:47 -0400 |
commit | d5c9a02e514d8bd75cbe192d6465ab4bb5af43ad (patch) | |
tree | 1f5769533458988e6499322e1d30d1bf82a7a68f /src/berry_tag_screen.c | |
parent | a774610eaa767952d4d0033f45dcaec8e8be8583 (diff) | |
parent | 6546ff5d0ad80ceca6b422713e0d3cd0ffa62b53 (diff) |
Merge pull request #357 from camthesaxman/integrate_data
define more data in C
Diffstat (limited to 'src/berry_tag_screen.c')
-rw-r--r-- | src/berry_tag_screen.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/berry_tag_screen.c b/src/berry_tag_screen.c index 2d8ff2236..6cbc38ecc 100644 --- a/src/berry_tag_screen.c +++ b/src/berry_tag_screen.c @@ -41,13 +41,20 @@ extern u16 gUnknown_030041B4; extern const struct CompressedSpriteSheet gUnknown_083C1F74; extern const struct CompressedSpritePalette gUnknown_083C1F7C; -extern u8 *gUnknown_0841192C[]; - extern u8 gBerryCheck_Gfx[]; extern u8 gBerryCheck_Pal[]; extern u8 gUnknown_08E788E4[]; extern u8 gUnknown_08E78A84[]; +static const u8 *const gUnknown_0841192C[] = +{ + ContestStatsText_VerySoft, + ContestStatsText_Soft, + ContestStatsText_Hard, + ContestStatsText_VeryHard, + ContestStatsText_SuperHard, +}; + static void sub_8146014(void); static void sub_814602C(void); static bool8 sub_8146058(void); |