From e697781ab5e618988b37951ab4e16a3e23e18655 Mon Sep 17 00:00:00 2001 From: gepard1984 Date: Mon, 19 Mar 2012 23:35:42 +0000 Subject: - Script label db now utilizes `DBMap`'s ability to store integer-type data (follow-up to r15682). - Some minor code cleanups. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15734 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/npc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/npc.c') diff --git a/src/map/npc.c b/src/map/npc.c index fb806cdd2..6479bd9e1 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -2148,7 +2148,7 @@ static const char* npc_parse_shop(char* w1, char* w2, char* w3, char* w4, const int npc_convertlabel_db(DBKey key, DBData *data, va_list ap) { const char* lname = (const char*)key.str; - int lpos = (int)db_data2ptr(data); + int lpos = db_data2i(data); struct npc_label_list** label_list; int* label_list_num; const char* filepath; @@ -2299,7 +2299,7 @@ static const char* npc_parse_script(char* w1, char* w2, char* w3, char* w4, cons { DBMap* label_db = script_get_label_db(); label_db->foreach(label_db, npc_convertlabel_db, &label_list, &label_list_num, filepath); - label_db->clear(label_db, NULL); // not needed anymore, so clear the db + db_clear(label_db); // not needed anymore, so clear the db } CREATE(nd, struct npc_data, 1); -- cgit v1.2.3-60-g2f50