summaryrefslogtreecommitdiff
path: root/src/berry_tag_screen.c
diff options
context:
space:
mode:
authorCameron Hall <camthesaxman@users.noreply.github.com>2017-01-27 13:06:20 -0500
committerYamaArashi <YamaArashi@users.noreply.github.com>2017-01-27 10:06:20 -0800
commitb9ff56bd89ac11a9b40b34f834dcf7a5be4d90a6 (patch)
tree4ee0f20cf1c2dc523108c424bb435cbd0bd43542 /src/berry_tag_screen.c
parent72bc8f23d37c6efd68ad4a0f86ba87b6cd3db4d2 (diff)
define more data in C (#219)
* define some graphics data in C * define wild pokemon in C * use less #ifdefs * define data in berry.c
Diffstat (limited to 'src/berry_tag_screen.c')
-rw-r--r--src/berry_tag_screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/berry_tag_screen.c b/src/berry_tag_screen.c
index 040b9acd1..11f6e3ded 100644
--- a/src/berry_tag_screen.c
+++ b/src/berry_tag_screen.c
@@ -265,7 +265,7 @@ static void sub_8146480(u8 taskid)
static void sub_81464E4(void)
{
- struct Berry *berryInfo;
+ const struct Berry *berryInfo;
u32 size;
s32 sizeMajor;
s32 sizeMinor;
@@ -306,7 +306,7 @@ static void sub_81464E4(void)
static void sub_8146600(u8 berry)
{
- struct Berry *berryInfo;
+ const struct Berry *berryInfo;
u16 i;
berryInfo = GetBerryInfo(berry + 1);