diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-05-30 07:48:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-30 07:48:45 -0500 |
commit | d1965e3c751b77243c11d62eadc994422dc682ae (patch) | |
tree | 61ee8faf9f1fc7569efa086f2108b7f886e49127 /include/global.h | |
parent | b8f90052a58d1781ef40e2a4b7decf4ca4ed62b8 (diff) | |
parent | 9680b95bdde1226e12485a84e47c6a7c32932048 (diff) |
Merge pull request #618 from huderlem/objMovement
Document event object movement
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/global.h b/include/global.h index 857ae6f07..0f015745b 100644 --- a/include/global.h +++ b/include/global.h @@ -96,7 +96,7 @@ enum LanguageId // capacities of various saveblock objects #define DAYCARE_MON_COUNT 2 #define POKEBLOCKS_COUNT 40 -#define MAP_OBJECTS_COUNT 16 +#define EVENT_OBJECTS_COUNT 16 #define BERRY_TREES_COUNT 128 #define FLAGS_COUNT 288 #define VARS_COUNT 256 @@ -668,8 +668,8 @@ struct SaveBlock1 /* 0x02025734 */ /*0x972*/ u8 filler_972[0x6]; /*0x978*/ u16 trainerRematchStepCounter; /*0x97A*/ u8 trainerRematches[100]; - /*0x9E0*/ struct MapObject mapObjects[MAP_OBJECTS_COUNT]; - /*0xC20*/ struct MapObjectTemplate mapObjectTemplates[64]; + /*0x9E0*/ struct EventObject eventObjects[EVENT_OBJECTS_COUNT]; + /*0xC20*/ struct EventObjectTemplate eventObjectTemplates[64]; /*0x1220*/ u8 flags[FLAGS_COUNT]; /*0x1340*/ u16 vars[VARS_COUNT]; /*0x1540*/ u32 gameStats[NUM_GAME_STATS]; |