summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-05-04 13:32:06 -0300
committershennetsind <ind@henn.et>2013-05-04 13:32:06 -0300
commit416cc5c5acdb51aaeda31bb32e0952b5f5bac554 (patch)
tree613cb72552c9f1a5bf483a680e78a8c3c81a24d2 /src/common
parenteac1a8a7537ae7ff78c45261f8916c2886762cd4 (diff)
downloadhercules-416cc5c5acdb51aaeda31bb32e0952b5f5bac554.tar.gz
hercules-416cc5c5acdb51aaeda31bb32e0952b5f5bac554.tar.bz2
hercules-416cc5c5acdb51aaeda31bb32e0952b5f5bac554.tar.xz
hercules-416cc5c5acdb51aaeda31bb32e0952b5f5bac554.zip
Enabling a temporary debug setup for mapindex
so when this thing finds a unknown id we can actually know where it came from. Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common')
-rw-r--r--src/common/mapindex.c5
-rw-r--r--src/common/mapindex.h3
2 files changed, 4 insertions, 4 deletions
diff --git a/src/common/mapindex.c b/src/common/mapindex.c
index edf9f26f8..6af5f134f 100644
--- a/src/common/mapindex.c
+++ b/src/common/mapindex.c
@@ -133,10 +133,9 @@ unsigned short mapindex_name2id(const char* name)
return 0;
}
-const char* mapindex_id2name(unsigned short id)
-{
+const char* mapindex_id2name_sub(unsigned short id,const char *file, int line, const char *func) {
if (id > MAX_MAPINDEX || !mapindex_exists(id)) {
- ShowDebug("mapindex_id2name: Requested name for non-existant map index [%d] in cache.\n", id);
+ ShowDebug("mapindex_id2name: Requested name for non-existant map index [%d] in cache. %s:%s:%d\n", id,file,func,line);
return indexes[0].name; // dummy empty string so that the callee doesn't crash
}
return indexes[id].name;
diff --git a/src/common/mapindex.h b/src/common/mapindex.h
index 75cb254c0..4c0641c56 100644
--- a/src/common/mapindex.h
+++ b/src/common/mapindex.h
@@ -50,7 +50,8 @@ extern char mapindex_cfgfile[80];
const char* mapindex_getmapname(const char* string, char* output);
const char* mapindex_getmapname_ext(const char* string, char* output);
unsigned short mapindex_name2id(const char*);
-const char* mapindex_id2name(unsigned short);
+#define mapindex_id2name(n) mapindex_id2name_sub(n,__FILE__, __LINE__, __func__)
+const char* mapindex_id2name_sub(unsigned short,const char *file, int line, const char *func);
void mapindex_init(void);
void mapindex_final(void);