diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-01-16 09:53:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-16 09:53:08 -0500 |
commit | fad367402892e1c25634c4448936d84a621c341c (patch) | |
tree | b796aba2ae57729cae5f78767336082dd46a6b21 /src/script.c | |
parent | 0bc479db34154988c6322bf5f2bb6d48556f62c3 (diff) | |
parent | 884b46a5dc26ae9e0c0abcf7e0d69c1122a30e22 (diff) |
Merge pull request #225 from GriffinRichards/doc-questlog
Document some quest log
Diffstat (limited to 'src/script.c')
-rw-r--r-- | src/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script.c b/src/script.c index f18a8568b..0a4b69bac 100644 --- a/src/script.c +++ b/src/script.c @@ -1,11 +1,11 @@ #include "global.h" #include "script.h" #include "event_data.h" +#include "quest_log.h" #define RAM_SCRIPT_MAGIC 51 #define SCRIPT_STACK_SIZE 20 -extern u8 gUnknown_203ADFA; extern void sub_80CBDE8(void); // field_specials extern u16 CalcCRC16WithTable(u8 *data, int length); // util @@ -435,7 +435,7 @@ bool8 mapheader_run_first_tag2_script_list_match(void) { u8 *ptr; - if(gUnknown_203ADFA == 3) + if(gQuestLogState == 3) return 0; ptr = mapheader_get_first_match_from_tagged_ptr_list(2); |