diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-06-04 09:37:56 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-06-04 09:37:56 -0400 |
commit | d53b7d3b2eb17cc6e7973b50f460709df658bad5 (patch) | |
tree | 7e7614f61dced8925b73ed776916d4779333fe4b /include/global.fieldmap.h | |
parent | ae417f7590829d6018cd80e02364834dedd88fe4 (diff) |
A couple more small functions in decoration.s
Diffstat (limited to 'include/global.fieldmap.h')
-rwxr-xr-x[-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..100755 --- 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 |