diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-26 16:23:00 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-26 16:42:57 -0400 |
commit | b839c213073f99d73d03bb28f0fd350e13afba09 (patch) | |
tree | 554c6ecbc9701bfa7d5397d2e22439f2793b079c /src/egg_hatch.c | |
parent | fb06e4a3c94ae17b73df6d3aecf2d18213aa183e (diff) |
Fix/suppress warnings when building with gcc-8
Diffstat (limited to 'src/egg_hatch.c')
-rw-r--r-- | src/egg_hatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egg_hatch.c b/src/egg_hatch.c index 605cd0366..835141ef2 100644 --- a/src/egg_hatch.c +++ b/src/egg_hatch.c @@ -73,7 +73,7 @@ static void CreateRandomEggShardSprite(void); static void CreateEggShardSprite(u8 x, u8 y, s16 data1, s16 data2, s16 data3, u8 spriteAnimIndex); // IWRAM bss -static IWRAM_DATA struct EggHatchData *sEggHatchData; +static struct EggHatchData *sEggHatchData; // rom data static const u16 sEggPalette[] = INCBIN_U16("graphics/pokemon/egg/normal.gbapal"); |