diff options
author | shennetsind <ind@henn.et> | 2013-07-08 14:57:53 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-07-08 14:57:53 -0300 |
commit | 4f69a9ea0f80e78da61482b2d1143a6e58859fd1 (patch) | |
tree | 74b8140fd8fd67bcc626d48366ee9237f9c3432a /src/map/map.c | |
parent | 19f0fcd80e004aeaf201112c90992f5342240f2d (diff) | |
download | hercules-4f69a9ea0f80e78da61482b2d1143a6e58859fd1.tar.gz hercules-4f69a9ea0f80e78da61482b2d1143a6e58859fd1.tar.bz2 hercules-4f69a9ea0f80e78da61482b2d1143a6e58859fd1.tar.xz hercules-4f69a9ea0f80e78da61482b2d1143a6e58859fd1.zip |
Fixed Bug #7493
Special Thanks to quesoph
http://hercules.ws/board/tracker/issue-7493-compiling-with-cygwin/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c index 3a2ca6c57..31600440d 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -5274,7 +5274,7 @@ void map_hp_symbols(void) { HPM->share(map,"map"); } -void load_defaults(void) { +void map_load_defaults(void) { atcommand_defaults(); battle_defaults(); battleground_defaults(); @@ -5408,7 +5408,7 @@ int do_init(int argc, char *argv[]) } memset(&index2mapid, -1, sizeof(index2mapid)); - load_defaults(); + map_load_defaults(); map_config_read(iMap->MAP_CONF_NAME); CREATE(map,struct map_data,iMap->map_num); iMap->map_num = 0; |