diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-01-17 14:13:04 +0100 |
---|---|---|
committer | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-01-17 15:00:04 +0100 |
commit | c9722602cb47eb5b6ecbccddf13df5f286a8ef7b (patch) | |
tree | f88f9a53cf98c06890cd9e561dc9d1f851393220 /src/pokemon_3.c | |
parent | 648c6c7093f5173694562929f615380f297ad306 (diff) |
Sort includes
Diffstat (limited to 'src/pokemon_3.c')
-rw-r--r-- | src/pokemon_3.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pokemon_3.c b/src/pokemon_3.c index cf172b122..f313bff49 100644 --- a/src/pokemon_3.c +++ b/src/pokemon_3.c @@ -1,16 +1,16 @@ #include "global.h" #include "asm.h" -#include "text.h" -#include "string_util.h" +#include "event_data.h" +#include "item.h" +#include "items.h" +#include "main.h" #include "pokemon.h" #include "rng.h" +#include "rtc.h" #include "species.h" -#include "main.h" #include "sprite.h" -#include "event_data.h" -#include "rtc.h" -#include "item.h" -#include "items.h" +#include "string_util.h" +#include "text.h" #define EVO_FRIENDSHIP 0x0001 // Pokémon levels up with friendship ≥ 220 #define EVO_FRIENDSHIP_DAY 0x0002 // Pokémon levels up during the day with friendship ≥ 220 |