diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-10-05 13:14:40 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-10-05 13:14:40 -0400 |
commit | 29cb480fa897389f915a163704c0b66057d513df (patch) | |
tree | 07fdf71dfcb50e6200ae55783f69c04d78a29a30 /src | |
parent | 69cb422b78644c60e5471eea8c82ea9347d48b60 (diff) |
make ewram static again
Diffstat (limited to 'src')
-rw-r--r-- | src/mailbox_pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailbox_pc.c b/src/mailbox_pc.c index 80c3f7e0b..0ebffc67e 100644 --- a/src/mailbox_pc.c +++ b/src/mailbox_pc.c @@ -11,8 +11,8 @@ #include "sound.h" #include "constants/songs.h" -EWRAM_DATA u8 sWindowIds[3] = {}; -EWRAM_DATA struct ListMenuItem * sListMenuItems = NULL; +static EWRAM_DATA u8 sWindowIds[3] = {}; +static EWRAM_DATA struct ListMenuItem * sListMenuItems = NULL; static void MoveCursorFunc(s32 itemIndex, bool8 onInit, struct ListMenu * list); |