diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-06-13 23:12:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 23:12:05 -0500 |
commit | 373dfb57102675130ab714ba9e21bd41c7b74795 (patch) | |
tree | a27705ab196c9d45c03b5d2efad4dde79eaed69a /include/global.fieldmap.h | |
parent | 2f437b0a94dd88cd78d0f6b4d92b9f5169531376 (diff) | |
parent | 48a15638c63f2b3d4b2d12d346e466ddca006570 (diff) |
Merge branch 'master' into decompile_battle_7
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 |