summaryrefslogtreecommitdiff
path: root/src/code_8097670.c
diff options
context:
space:
mode:
authorSeth Barberee <seth.barberee@gmail.com>2022-03-21 17:48:40 -0700
committerSeth Barberee <seth.barberee@gmail.com>2022-03-21 17:48:40 -0700
commit57f540b320ae8439fe4b42c6149641b877c7ea73 (patch)
treed131e5351b684a671cb8b5c62a7e8ed925ca773e /src/code_8097670.c
parent46420815f4fd1f374ee48ee447bb42539e1a669c (diff)
fix a few nonmatchings and code cleanup
Diffstat (limited to 'src/code_8097670.c')
-rw-r--r--src/code_8097670.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/code_8097670.c b/src/code_8097670.c
index a918ac9..e2b3723 100644
--- a/src/code_8097670.c
+++ b/src/code_8097670.c
@@ -8,7 +8,7 @@ struct unkStruct_203B494
s32 numAdventures;
s32 unk8;
s32 unkC;
- struct unkPokeSubStruct_4 dungeonLocation;
+ struct DungeonLocation dungeonLocation;
s16 unk14;
s16 unk16;
s16 unk18;
@@ -33,13 +33,13 @@ struct unkStruct_203B494 *sub_8097680(void)
return &gUnknown_2039778;
}
-void SetDungeonLocationInfo(struct unkPokeSubStruct_4 *r0)
+void SetDungeonLocationInfo(struct DungeonLocation *r0)
{
gUnknown_203B494->dungeonLocation.dungeonIndex = r0->dungeonIndex;
gUnknown_203B494->dungeonLocation.dungeonFloor = r0->dungeonFloor;
}
-struct unkPokeSubStruct_4 *GetDungeonLocationInfo(void)
+struct DungeonLocation *GetDungeonLocationInfo(void)
{
return &gUnknown_203B494->dungeonLocation;
}