diff options
author | yenatch <yenatch@gmail.com> | 2017-06-14 00:05:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-14 00:05:22 -0400 |
commit | 48a15638c63f2b3d4b2d12d346e466ddca006570 (patch) | |
tree | 89942e8cf1e40968b48759bf2b4e575912a2271b /include/global.fieldmap.h | |
parent | e09e1da6c252e17cf6db429ad142b05dbf156548 (diff) | |
parent | 4e7297790f29987b1dd502fcf3b03ca76042c622 (diff) |
Merge pull request #316 from PikalaxALT/decoration
Decoration
Diffstat (limited to 'include/global.fieldmap.h')
-rw-r--r-- | include/global.fieldmap.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/include/global.fieldmap.h b/include/global.fieldmap.h index a0fe0e6ab..b8bab45d8 100644 --- a/include/global.fieldmap.h +++ b/include/global.fieldmap.h @@ -44,23 +44,23 @@ typedef void (*TilesetCB)(void); struct Tileset { - bool8 isCompressed; - bool8 isSecondary; - void *tiles; - void *palettes; - void *metatiles; - void *metatileAttributes; - TilesetCB callback; + /*0x00*/ bool8 isCompressed; + /*0x01*/ bool8 isSecondary; + /*0x04*/ void *tiles; + /*0x08*/ void *palettes; + /*0x0c*/ void *metatiles; + /*0x10*/ void *metatileAttributes; + /*0x14*/ TilesetCB callback; }; struct MapData { - s32 width; - s32 height; - u16 *border; - u16 *map; - struct Tileset *primaryTileset; - struct Tileset *secondaryTileset; + /*0x00*/ s32 width; + /*0x04*/ s32 height; + /*0x08*/ u16 *border; + /*0x0c*/ u16 *map; + /*0x10*/ struct Tileset *primaryTileset; + /*0x14*/ struct Tileset *secondaryTileset; }; struct BackupMapData |