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/decoration.c | |
parent | 00896cb3b5813cb843e5e1abd4cbc9ff0ad3a632 (diff) | |
parent | 9525fdd54de805e8b45e23df6a57074e077c175d (diff) |
Merge pull request #137 from camthesaxman/constants_headers
move constants to C headers
Diffstat (limited to 'src/decoration.c')
-rw-r--r-- | src/decoration.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/decoration.c b/src/decoration.c index e4c84d0b9..987e628c5 100644 --- a/src/decoration.c +++ b/src/decoration.c @@ -1,4 +1,5 @@ #include "global.h" +#include "constants/decorations.h" #include "decompress.h" #include "malloc.h" #include "text.h" @@ -8,7 +9,7 @@ #include "task.h" #include "main.h" #include "palette.h" -#include "songs.h" +#include "constants/songs.h" #include "overworld.h" #include "fieldmap.h" #include "metatile_behavior.h" @@ -32,7 +33,7 @@ #include "tilesets.h" #include "item_icon.h" #include "trader.h" -#include "map_object_constants.h" +#include "constants/map_objects.h" #include "decoration_inventory.h" #include "decoration.h" #include "graphics.h" |