diff options
author | momacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-23 04:19:16 +0000 |
---|---|---|
committer | momacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-23 04:19:16 +0000 |
commit | a700ac463ea3a34a78a5de15a488b28f0932c91a (patch) | |
tree | b17bb2bc16e63a756d80492b296092cb3e696251 /src/tool | |
parent | d67c0dd4f78b1a1a6aae9e54791bd93daea5904f (diff) | |
download | hercules-a700ac463ea3a34a78a5de15a488b28f0932c91a.tar.gz hercules-a700ac463ea3a34a78a5de15a488b28f0932c91a.tar.bz2 hercules-a700ac463ea3a34a78a5de15a488b28f0932c91a.tar.xz hercules-a700ac463ea3a34a78a5de15a488b28f0932c91a.zip |
- There will now be a warning regarding to map name length limitation (part of bugreport:1688).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16950 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/tool')
-rw-r--r-- | src/tool/mapcache.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tool/mapcache.c b/src/tool/mapcache.c index b4c1a7c03..28688438a 100644 --- a/src/tool/mapcache.c +++ b/src/tool/mapcache.c @@ -176,6 +176,8 @@ void cache_map(char *name, struct map_data *m) encode_zip(write_buf, &len, m->cells, m->xs*m->ys); // Fill the map header + if (name > MAP_NAME_LENGTH) // It does not hurt to warn that there are maps with name longer than allowed. + ShowWarning ("Map name '%s' size '%d' is too long. Truncating to '%d'.\n", name, sizeof(name), MAP_NAME_LENGTH); strncpy(info.name, name, MAP_NAME_LENGTH); info.xs = MakeShortLE(m->xs); info.ys = MakeShortLE(m->ys); |