diff --git a/src/config.cpp b/src/config.cpp index ae82b18..0fe715d 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -25,7 +25,7 @@ bool ConfigIni::set_xml_path(const std::string& path) return false; } ini_.SetValue("Basic", "xml_path", path.c_str()); - if (!ini_.SaveFile(ini_path_.c_str()) != SI_OK) { + if (ini_.SaveFile(ini_path_.c_str()) != SI_OK) { return false; } return true;