summaryrefslogtreecommitdiff
path: root/src/common/mapindex.c
diff options
context:
space:
mode:
authorzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-08-14 14:03:53 +0000
committerzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-08-14 14:03:53 +0000
commit174ade9a45988abf053cf45f30775fc6a76e706e (patch)
treea72ecf639a28e68b9a1affc2a9961cb80be191ed /src/common/mapindex.c
parente9f0392e73cdb07067bbd031aeb4bdeff131ae93 (diff)
downloadhercules-174ade9a45988abf053cf45f30775fc6a76e706e.tar.gz
hercules-174ade9a45988abf053cf45f30775fc6a76e706e.tar.bz2
hercules-174ade9a45988abf053cf45f30775fc6a76e706e.tar.xz
hercules-174ade9a45988abf053cf45f30775fc6a76e706e.zip
- Fixes and optimization to instancing. Thanks to Saithis
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14006 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/mapindex.c')
-rw-r--r--src/common/mapindex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mapindex.c b/src/common/mapindex.c
index 01843c936..ca2ff4751 100644
--- a/src/common/mapindex.c
+++ b/src/common/mapindex.c
@@ -58,7 +58,7 @@ const char* mapindex_getmapname_ext(const char* string, char* output)
len = safestrnlen(buf, MAP_NAME_LENGTH);
if (len == MAP_NAME_LENGTH) {
- ShowWarning("(mapindex_normalize_name) Map name '%*s' is too long!", 2*MAP_NAME_LENGTH, buf);
+ ShowWarning("(mapindex_normalize_name) Map name '%*s' is too long!\n", 2*MAP_NAME_LENGTH, buf);
len--;
}
strncpy(dest, buf, len+1);