diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-10-25 17:01:05 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-10-25 17:01:05 -0400 |
commit | 4b052a204084119ad9302ccdf43b76733447a2df (patch) | |
tree | 5d92ab40515c6080edb10b9b73e43ee5d76b29c1 /src/quest_log.c | |
parent | 52ce0f21c6c05e330c28cb4aa2f0755220723fed (diff) |
Resolve review comments
Diffstat (limited to 'src/quest_log.c')
-rw-r--r-- | src/quest_log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quest_log.c b/src/quest_log.c index a51def1b9..14485ca46 100644 --- a/src/quest_log.c +++ b/src/quest_log.c @@ -438,7 +438,7 @@ void sub_811089C(void) memset(gSaveBlock1Ptr->questLog, 0, sizeof(gSaveBlock1Ptr->questLog)); gUnknown_203ADF8 = 0; gUnknown_203ADFA = 0; - sQuestLogCB = 0; + sQuestLogCB = NULL; gUnknown_203AE08 = NULL; gUnknown_203AE04 = NULL; sub_8113BD8(); @@ -458,7 +458,7 @@ void sub_8110920(void) void RunQuestLogCB(void) { - if (sQuestLogCB) + if (sQuestLogCB != NULL) sQuestLogCB(); } |