diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-03-03 21:59:57 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-03-07 08:46:55 -0600 |
commit | 105e1721d665d8386afd47882020c51d6d97c522 (patch) | |
tree | c8069eb2186b2099d345676b91728a88200ed53b /src/main_menu.c | |
parent | 00814740183a670a2b122d9b3d708b97c5d2df4e (diff) |
Overhaul scaninc to work recursively
This also fixes the bug where scaninc would ignore #include lines
in assembly files.
Diffstat (limited to 'src/main_menu.c')
-rw-r--r-- | src/main_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main_menu.c b/src/main_menu.c index e6e29d942..1879495f5 100644 --- a/src/main_menu.c +++ b/src/main_menu.c @@ -1,3 +1,4 @@ +#include <string.h> #include "global.h" #include "trainer_pokemon_sprites.h" #include "bg.h" @@ -30,7 +31,6 @@ #include "scanline_effect.h" #include "sound.h" #include "sprite.h" -#include "string.h" #include "strings.h" #include "string_util.h" #include "task.h" |