diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-09-09 19:46:02 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-09-09 19:46:02 -0500 |
commit | db15fdd32463da9ef007a068f87f9f81e47cf3a7 (patch) | |
tree | ab232d8f14f0ea6b18ca83d1e2bbaa19f19ff45c /include | |
parent | adc3a5e6bb917deb3d48aad40cc91e495147e23c (diff) |
documented some fields thx to PMDe
Diffstat (limited to 'include')
-rw-r--r-- | include/dungeon.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dungeon.h b/include/dungeon.h index 7a9c864..663a50f 100644 --- a/include/dungeon.h +++ b/include/dungeon.h @@ -11,7 +11,7 @@ struct Dungeon { u8 stairDirection; u8 unk1; - u8 unk2; + u8 isRecruitable; s8 unk3; u8 maxItemCount; u8 maxPartySize; @@ -20,8 +20,8 @@ struct Dungeon u8 unk8; u8 unk9; u8 saveBeforeEntering; //whether to quicksave or not before entering - u8 unkB; - s16 unkC; + u8 unkB; // Apparently is a HM mask (Fly, Dive, Waterfall, Surf, Water) + s16 timer; s16 unkE; }; |