diff options
author | Cheng Hann Gan <chenghanngan.us@gmail.com> | 2021-12-12 15:52:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-12 12:52:06 -0800 |
commit | c53bdc35f8bdd401e90dfae263a3f5fc9182f86b (patch) | |
tree | 6111353227b153e4aa56422d91e4e79288ce7376 /include/dungeon_global_data.h | |
parent | a34c9ab91b553fcb1f72b94eb912b94bea58885b (diff) |
Dungeon random/AI decomp + converted positions to structs (#83)
* Decomped RollPercentChance()
* Decomped DungeonRandomCapped()
* Decomped DungeonRandom()
* Decomped FindRockItemTargets()
-Added position struct.
Diffstat (limited to 'include/dungeon_global_data.h')
-rw-r--r-- | include/dungeon_global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dungeon_global_data.h b/include/dungeon_global_data.h index 254a195..5cb0c8a 100644 --- a/include/dungeon_global_data.h +++ b/include/dungeon_global_data.h @@ -72,7 +72,7 @@ struct DungeonGlobalData u8 fill10364[0x10844 - 0x10364]; /* 0x10844 */ u16 numRoomExits[MAX_ROOM_COUNT]; u8 fill10874[0x10884 - 0x10874]; - /* 0x10884 */ struct RoomExit roomExits[MAX_ROOM_COUNT][32]; // Arrays of room exits for each room. + /* 0x10884 */ struct Position roomExits[MAX_ROOM_COUNT][32]; // Arrays of room exits for each room. u8 fill11444[0x1356C - 0x11484]; u8 unk1356C; u8 fill1356D[0x1357C - 0x1356D]; |