early-access version 3978

This commit is contained in:
pineappleEA
2023-11-17 05:30:09 +01:00
parent f0ffb60372
commit 3f269ac0f8
16 changed files with 304 additions and 60 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ void Config::Initialize(const std::optional<std::string> config_path) {
}
void Config::WriteToIni() const {
if (const SI_Error rc = config->SaveFile(config_loc.c_str()); rc < 0) {
if (const SI_Error rc = config->SaveFile(config_loc.c_str(), false); rc < 0) {
LOG_ERROR(Frontend, "Config file could not be saved!");
}
}