diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-12-23 21:26:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-23 21:26:28 -0600 |
commit | 30c77aa4ca5502b07a9ccdf2012a7da265e8bffa (patch) | |
tree | 1e3119fbe79abf3c211d65a1832e56f9f8ed9408 /include | |
parent | aa13f45ebb79aed62171fbfe654d8b542fc9aa6c (diff) | |
parent | 8c1aac3746bd2599014579428878645f4f38f2fd (diff) |
Merge pull request #499 from camthesaxman/fix_nonmatching
fix some nonmatching functions
Diffstat (limited to 'include')
-rw-r--r-- | include/region_map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/region_map.h b/include/region_map.h index 4061c5e3d..254307052 100644 --- a/include/region_map.h +++ b/include/region_map.h @@ -4,10 +4,10 @@ struct RegionMap { u8 mapSectionName[20]; - u16 mapSectionId; - u8 unk16; - u8 everGrandeCityArea; - u8 (*inputCallback)(void); + /*0x14*/ u16 mapSectionId; + /*0x16*/ u8 unk16; + /*0x17*/ u8 everGrandeCityArea; + /*0x18*/ u8 (*inputCallback)(void); struct Sprite *cursorSprite; struct Sprite *playerIconSprite; s32 bg2x; |