diff options
author | YamaArashi <shadow962@live.com> | 2016-10-23 12:23:02 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-10-23 12:23:02 -0700 |
commit | 12ae329038b44197246de99bcd2c41449f5797e5 (patch) | |
tree | 7eb5f11d3dbf841bcdf2a976c5aeded103daf32f | |
parent | ec0a1478fe50039679c51e529a1032e4995a10a5 (diff) |
add player party to save block 1
-rw-r--r-- | include/global.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index 223cdd4a4..c1584f4f4 100644 --- a/include/global.h +++ b/include/global.h @@ -94,6 +94,7 @@ struct SecretBaseRecord #include "game_stat.h" #include "fieldmap.h" #include "berry.h" +#include "pokemon.h" struct WarpData { @@ -136,7 +137,9 @@ struct SaveBlock1 u8 filler_2F; u8 flashUsed; u16 mapDataId; - u8 filler_34[0x45C]; + u8 filler_34[0x200]; + u8 playerPartyCount; + struct Pokemon playerParty[6]; u32 money; u16 coins; u16 registeredItem; // registered for use with SELECT button |