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/heal_location.c | |
parent | 00896cb3b5813cb843e5e1abd4cbc9ff0ad3a632 (diff) | |
parent | 9525fdd54de805e8b45e23df6a57074e077c175d (diff) |
Merge pull request #137 from camthesaxman/constants_headers
move constants to C headers
Diffstat (limited to 'src/heal_location.c')
-rw-r--r-- | src/heal_location.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/heal_location.c b/src/heal_location.c index efc534170..aa90fe1ae 100644 --- a/src/heal_location.c +++ b/src/heal_location.c @@ -1,10 +1,10 @@ // Includes #include "global.h" -#include "map_constants.h" +#include "constants/maps.h" #include "heal_location.h" -#define HEAL_LOCATION(map, x, y) {MAP_GROUP_##map, MAP_ID_##map, x, y} +#define HEAL_LOCATION(map, x, y) {MAP_GROUP(map), MAP_NUM(map), x, y} // Static type declarations |