diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-06-23 17:35:37 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2021-06-23 17:35:37 -0500 |
commit | d1685379681008d41f78fa4a6ae17ace5ee2dbfa (patch) | |
tree | 22645f079beea40333e7e822f055c063781ef806 /src/save.c | |
parent | f1fdcc2b0ade13ad1a4cc7360eac70f27396d26a (diff) |
Finish out game options and FatalError
Some data cleanup as well. Thanks pika for the noreturn tip for
FatalError.
Diffstat (limited to 'src/save.c')
-rw-r--r-- | src/save.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,7 +15,7 @@ struct unk_struct u8 unk4[0x10]; // has "POKE_DUNGEON__05 u32 unk14; u32 unk18; - u32 unk1C; + u32 dungeonLocation; u32 unk20; u32 padding[503]; }; @@ -179,7 +179,7 @@ extern u32 sub_80958F8(void); extern void sub_8095900(void); extern void sub_80972F4(void); extern u32 sub_8097680(void); -extern u32 *sub_809769C(void); +extern u32 *GetDungeonLocationInfo(void); extern void sub_80974E8(void); extern void ResetNumAdventures(void); extern void sub_80993D8(void); @@ -529,7 +529,7 @@ u32 sub_80121E0(u32 r0) temp = 0x1F; r4->unk18 = r0; - r4->unk1C = *sub_809769C(); + r4->dungeonLocation = *GetDungeonLocationInfo(); r4->unk14 = 0x5071412; string = sub_8011C4C(); |