diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2021-03-14 20:52:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-14 20:52:30 -0400 |
commit | 5075067ecd8718ab96a063946662c71fe3ef5369 (patch) | |
tree | 217d6572a5c549bcc460027337cba71b76cd46cf /src/help_system.c | |
parent | e1f76f168972c08bbdad3f2e45a28baf40b56c7e (diff) | |
parent | 077faeb1bd073badf211157d5cfb00c4b9ecf154 (diff) |
Merge pull request #402 from GriffinRichards/nonmatch-fix
Use global symbols for assembly on modern
Diffstat (limited to 'src/help_system.c')
-rw-r--r-- | src/help_system.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/help_system.c b/src/help_system.c index 946da55be..196053274 100644 --- a/src/help_system.c +++ b/src/help_system.c @@ -9,6 +9,10 @@ #include "event_data.h" #include "constants/songs.h" +#if !defined(NONMATCHING) && MODERN +#define static +#endif + extern u8 gGlyphInfo[]; bool8 gHelpSystemEnabled; |