summaryrefslogtreecommitdiff
path: root/src/quest_log.c
diff options
context:
space:
mode:
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();
}
}