summaryrefslogtreecommitdiff
path: root/src/map/itemdb.c
diff options
context:
space:
mode:
authorEmistry Haoyan <equinox1991@gmail.com>2019-07-30 00:23:50 +0800
committerEmistry Haoyan <equinox1991@gmail.com>2019-07-30 23:40:37 +0800
commit1feeb9dc68f4c4125a4fde018456a6432632b042 (patch)
tree41ba349ab0920ccf46b0ec78b4260b3f4f22c215 /src/map/itemdb.c
parent0edf2360b185f0e1c68bb6ddbbbe3720af5651b3 (diff)
downloadhercules-1feeb9dc68f4c4125a4fde018456a6432632b042.tar.gz
hercules-1feeb9dc68f4c4125a4fde018456a6432632b042.tar.bz2
hercules-1feeb9dc68f4c4125a4fde018456a6432632b042.tar.xz
hercules-1feeb9dc68f4c4125a4fde018456a6432632b042.zip
Fix missing file path in console.
- show file path
Diffstat (limited to 'src/map/itemdb.c')
-rw-r--r--src/map/itemdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/itemdb.c b/src/map/itemdb.c
index 8caf88a4e..5c56794d8 100644
--- a/src/map/itemdb.c
+++ b/src/map/itemdb.c
@@ -1655,7 +1655,7 @@ static void itemdb_read_combos(void)
count++;
}
fclose(fp);
- ShowStatus("Done reading '"CL_WHITE"%"PRIu32""CL_RESET"' entries in '"CL_WHITE"item_combo_db"CL_RESET"'.\n", count);
+ ShowStatus("Done reading '"CL_WHITE"%"PRIu32""CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"'.\n", count, DBPATH"item_combo_db.txt");
return;
}
@@ -2407,7 +2407,7 @@ static int itemdb_readdb_libconfig(const char *filename)
}
db_destroy(duplicate_db);
libconfig->destroy(&item_db_conf);
- ShowStatus("Done reading '"CL_WHITE"%d"CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"'.\n", count, filename);
+ ShowStatus("Done reading '"CL_WHITE"%d"CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"'.\n", count, filepath);
return count;
}