diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-03-02 12:11:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 12:11:22 -0500 |
commit | ae08a402904b8c4069bdfba61f0af8f433083f91 (patch) | |
tree | 7bc8513f997cbf0ee4457df9341919b4e9eabe08 /src/main.c | |
parent | 5198a05272716990bcd98b9b216d3431adb25a3e (diff) | |
parent | 2d820809d74eaf4775ad0e2cc50e57bb65ed61a6 (diff) |
Merge pull request #279 from PikalaxALT/field_effect
Field effect
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c index a67c71746..77f668e6f 100644 --- a/src/main.c +++ b/src/main.c @@ -20,6 +20,7 @@ #include "battle_controllers.h" #include "scanline_effect.h" #include "save_failed_screen.h" +#include "quest_log.h" extern u32 intr_main[]; @@ -77,9 +78,6 @@ static IntrFunc * const sTimerIntrFunc = gIntrTable + 0x7; EWRAM_DATA u8 gDecompressionBuffer[0x4000] = {0}; EWRAM_DATA u16 gTrainerId = 0; -extern bool8 gWirelessCommType; -extern bool8 gUnknown_3005E88; - static void UpdateLinkAndCallCallbacks(void); static void InitMainCallbacks(void); static void CallCallbacks(void); @@ -178,7 +176,7 @@ static void InitMainCallbacks(void) gSaveBlock2Ptr = &gSaveBlock2; gSaveBlock1Ptr = &gSaveBlock1; gSaveBlock2.encryptionKey = 0; - gUnknown_3005E88 = FALSE; + gUnknown_3005E88 = 0; } static void CallCallbacks(void) |