diff options
author | camthesaxman <cameronghall@cox.net> | 2017-11-26 14:04:00 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-11-26 14:04:00 -0600 |
commit | 43349392dc4c79494af0e0727065c57ff78e1e92 (patch) | |
tree | e0e214f160c7f875dcd4f425885cb97e31251a87 /src | |
parent | 5f242ae6cee377d219defa8290ef1c164b003f52 (diff) |
easy_chat constants
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/trade.c | 2 | ||||
-rw-r--r-- | src/field/bard_music.c | 2 | ||||
-rw-r--r-- | src/field/battle_tower.c | 1 | ||||
-rw-r--r-- | src/field/dewford_trend.c | 1 | ||||
-rw-r--r-- | src/field/easy_chat.c | 1 | ||||
-rw-r--r-- | src/field/mauville_man.c | 1 | ||||
-rw-r--r-- | src/field/tv.c | 2 |
7 files changed, 7 insertions, 3 deletions
diff --git a/src/engine/trade.c b/src/engine/trade.c index 00b88c114..1079e4749 100644 --- a/src/engine/trade.c +++ b/src/engine/trade.c @@ -6,7 +6,7 @@ #include "constants/species.h" #include "items.h" #include "moves.h" -#include "easy_chat.h" +#include "constants/easy_chat.h" #include "link.h" #include "strings2.h" #include "graphics.h" diff --git a/src/field/bard_music.c b/src/field/bard_music.c index daf003233..335ba974e 100644 --- a/src/field/bard_music.c +++ b/src/field/bard_music.c @@ -1,6 +1,6 @@ #include "global.h" #include "bard_music.h" -#include "easy_chat.h" +#include "constants/easy_chat.h" struct BardSound { diff --git a/src/field/battle_tower.c b/src/field/battle_tower.c index 5f2a84d06..12a2f3f11 100644 --- a/src/field/battle_tower.c +++ b/src/field/battle_tower.c @@ -5,6 +5,7 @@ #include "battle_transition.h" #include "data2.h" #include "easy_chat.h" +#include "constants/easy_chat.h" #include "event_data.h" #include "item.h" #include "items.h" diff --git a/src/field/dewford_trend.c b/src/field/dewford_trend.c index bdcd76ec5..90ea74f77 100644 --- a/src/field/dewford_trend.c +++ b/src/field/dewford_trend.c @@ -1,6 +1,7 @@ #include "global.h" #include "dewford_trend.h" #include "easy_chat.h" +#include "constants/easy_chat.h" #include "event_data.h" #include "link.h" #include "random.h" diff --git a/src/field/easy_chat.c b/src/field/easy_chat.c index 7a4ae045e..1dce5863e 100644 --- a/src/field/easy_chat.c +++ b/src/field/easy_chat.c @@ -1,5 +1,6 @@ #include "global.h" #include "easy_chat.h" +#include "constants/easy_chat.h" #include "data2.h" #include "event_data.h" #include "field_message_box.h" diff --git a/src/field/mauville_man.c b/src/field/mauville_man.c index 7c9c072a1..fad6674db 100644 --- a/src/field/mauville_man.c +++ b/src/field/mauville_man.c @@ -2,6 +2,7 @@ #include "bard_music.h" #include "mauville_man.h" #include "easy_chat.h" +#include "constants/easy_chat.h" #include "event_data.h" #include "field_message_box.h" #include "m4a.h" diff --git a/src/field/tv.c b/src/field/tv.c index 28737ecaa..5c42fc7ec 100644 --- a/src/field/tv.c +++ b/src/field/tv.c @@ -20,7 +20,7 @@ #include "strings.h" #include "battle.h" #include "link.h" -#include "easy_chat.h" +#include "constants/easy_chat.h" #include "field_map_obj.h" #include "field_specials.h" #include "item.h" |