diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-12-11 12:45:08 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-11 12:45:08 -0600 |
commit | c9f196cdfea08eefffd39ebc77a150f197e1250e (patch) | |
tree | af62f4a34588c3ad679249cfed757ac2a8eb075a /src/battle_controllers.c | |
parent | 00896cb3b5813cb843e5e1abd4cbc9ff0ad3a632 (diff) | |
parent | 9525fdd54de805e8b45e23df6a57074e077c175d (diff) |
Merge pull request #137 from camthesaxman/constants_headers
move constants to C headers
Diffstat (limited to 'src/battle_controllers.c')
-rw-r--r-- | src/battle_controllers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/battle_controllers.c b/src/battle_controllers.c index 2d373e876..c6d47e71e 100644 --- a/src/battle_controllers.c +++ b/src/battle_controllers.c @@ -6,10 +6,10 @@ #include "battle_ai_script_commands.h" #include "battle_anim.h" #include "pokemon.h" -#include "species.h" +#include "constants/species.h" #include "recorded_battle.h" #include "util.h" -#include "abilities.h" +#include "constants/abilities.h" #include "battle_message.h" extern u32 gBattleTypeFlags; |