diff options
author | shennetsind <ind@henn.et> | 2013-03-30 23:54:56 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-03-30 23:54:56 -0300 |
commit | b721b3fef4a86bd29ef8529e0cd07e0ab8e957b3 (patch) | |
tree | efd9930a57d0affd64359978762cfbd895e413bb | |
parent | ff04c3ff3b41eb5bbf81278fd23e70b6455aa732 (diff) | |
download | hercules-b721b3fef4a86bd29ef8529e0cd07e0ab8e957b3.tar.gz hercules-b721b3fef4a86bd29ef8529e0cd07e0ab8e957b3.tar.bz2 hercules-b721b3fef4a86bd29ef8529e0cd07e0ab8e957b3.tar.xz hercules-b721b3fef4a86bd29ef8529e0cd07e0ab8e957b3.zip |
Follow up 90f117f6b071c9c12bb8b521b6de46301639e75c
Modified extension from .txt to .conf as proposed by Beret, highlights better on most ide's.
Signed-off-by: shennetsind <ind@henn.et>
-rw-r--r-- | db/pre-re/map_zone_db.conf (renamed from db/pre-re/map_zone_db.txt) | 0 | ||||
-rw-r--r-- | db/re/map_zone_db.conf (renamed from db/re/map_zone_db.txt) | 0 | ||||
-rw-r--r-- | src/map/map.c | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/db/pre-re/map_zone_db.txt b/db/pre-re/map_zone_db.conf index 996726575..996726575 100644 --- a/db/pre-re/map_zone_db.txt +++ b/db/pre-re/map_zone_db.conf diff --git a/db/re/map_zone_db.txt b/db/re/map_zone_db.conf index 996726575..996726575 100644 --- a/db/re/map_zone_db.txt +++ b/db/re/map_zone_db.conf diff --git a/src/map/map.c b/src/map/map.c index db933c2dd..8622aadb5 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -3626,9 +3626,9 @@ void read_map_zone_db(void) { config_setting_t *zones = NULL; /* TODO: #ifndef required for re/pre-re */ #ifdef RENEWAL - const char *config_filename = "db/re/map_zone_db.txt"; // FIXME hardcoded name + const char *config_filename = "db/re/map_zone_db.conf"; // FIXME hardcoded name #else - const char *config_filename = "db/pre-re/map_zone_db.txt"; // FIXME hardcoded name + const char *config_filename = "db/pre-re/map_zone_db.conf"; // FIXME hardcoded name #endif if (conf_read_file(&map_zone_db, config_filename)) return; |