summaryrefslogtreecommitdiff
path: root/src/quest_log.c
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2020-04-01 08:57:03 -0400
committerPikalaxALT <PikalaxALT@gmail.com>2020-04-01 08:57:03 -0400
commit1d399a41dd6250d5af49449308537488ec1aea85 (patch)
tree94fd10c7b70f8fe6788bd8ad01151f5f25db571e /src/quest_log.c
parentaf3253561005bccb62ef41a08810d4dd1a5b4ded (diff)
Fix intro gfx and start doccing intro methods
Diffstat (limited to 'src/quest_log.c')
-rw-r--r--src/quest_log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/quest_log.c b/src/quest_log.c
index a41459dc9..51e09e899 100644
--- a/src/quest_log.c
+++ b/src/quest_log.c
@@ -1388,7 +1388,7 @@ void QuestLog_OnInteractionWithSpecialNpc(void)
sEventRecordingPointer = NULL;
}
-void sub_81123BC(void)
+static void SortQuestLogInSav1(void)
{
struct QuestLog * buffer = AllocZeroed(QUEST_LOG_SCENE_COUNT * sizeof(struct QuestLog));
u8 i;
@@ -1410,12 +1410,12 @@ void sub_81123BC(void)
Free(buffer);
}
-void sub_8112450(void)
+void SaveQuestLogData(void)
{
if (MenuHelpers_LinkSomething() != TRUE)
{
QuestLog_OnInteractionWithSpecialNpc();
- sub_81123BC();
+ SortQuestLogInSav1();
}
}