diff options
author | Ariel Antonitis <arant@mit.edu> | 2019-02-23 21:55:24 -0500 |
---|---|---|
committer | Ariel Antonitis <arant@mit.edu> | 2019-02-23 21:55:24 -0500 |
commit | 42bb5dc53de366c0b22bf220cc382f7cc86d7f35 (patch) | |
tree | 0e673fb772a4401a51bf0f9eb5efc2f706ac6e2f | |
parent | 74a3c062706c3889c08a567ee9d9803a8a689592 (diff) |
Removed unused filler by aligning adjacent variables
-rw-r--r-- | src/pokemon_summary_screen.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c index bb49e6dc1..367ff2aff 100644 --- a/src/pokemon_summary_screen.c +++ b/src/pokemon_summary_screen.c @@ -112,11 +112,8 @@ static EWRAM_DATA struct PssData } *pssData = NULL; EWRAM_DATA u8 gLastViewedMonIndex = 0; static EWRAM_DATA u8 sUnknown_0203CF21 = 0; -static EWRAM_DATA u8 sFiller_0203CF22[2] = {0}; -static EWRAM_DATA u8 sUnknownTaskId = 0; -static EWRAM_DATA u8 sFiller_0203CF25[3] = {0}; - -extern const struct CompressedSpriteSheet gMonFrontPicTable[]; +ALIGNED(4) static EWRAM_DATA u8 sUnknownTaskId = 0; +ALIGNED(4) extern const struct CompressedSpriteSheet gMonFrontPicTable[]; struct UnkStruct_61CC04 { |