diff options
author | Haru <haru@dotalux.com> | 2016-02-16 13:31:41 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-17 10:40:43 +0100 |
commit | 5b673efa121320d1575e126243fa2c7ec460952d (patch) | |
tree | 609fa0a08bf4065a07ccb469039df43e96d095ee /src/map/clif.c | |
parent | 6c127b3ec4f73f02aff5b37e9526dcc249d95c54 (diff) | |
download | hercules-5b673efa121320d1575e126243fa2c7ec460952d.tar.gz hercules-5b673efa121320d1575e126243fa2c7ec460952d.tar.bz2 hercules-5b673efa121320d1575e126243fa2c7ec460952d.tar.xz hercules-5b673efa121320d1575e126243fa2c7ec460952d.zip |
Renamed config->read_file to config->load_file
- The return value is now consistent with the libconfig standard
(CONFIG_TRUE/CONFIG_FALSE).
- Removed some redundant error messages.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 3b2f255ef..5b9e9c99e 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -17317,10 +17317,8 @@ void clif_cashshop_db(void) { clif->cs.item_count[i] = 0; } - if (libconfig->read_file(&cashshop_conf, config_filename)) { - ShowError("can't read %s\n", config_filename); + if (!libconfig->load_file(&cashshop_conf, config_filename)) return; - } cashshop = libconfig->lookup(&cashshop_conf, "cash_shop"); @@ -18377,10 +18375,8 @@ bool clif_parse_roulette_db(void) { clif->rd.items[i] = 0; } - if (libconfig->read_file(&roulette_conf, config_filename)) { - ShowError("can't read %s\n", config_filename); + if (!libconfig->load_file(&roulette_conf, config_filename)) return false; - } roulette = libconfig->lookup(&roulette_conf, "roulette"); if( roulette != NULL && (levels = libconfig->setting_get_elem(roulette, 0)) != NULL ) { |