From ed94e1cb10ecc8a04f21733287b575b4aaaf7240 Mon Sep 17 00:00:00 2001 From: taynpg Date: Mon, 20 May 2024 07:59:58 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E9=80=BB=E8=BE=91=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;