diff --git a/soh/soh/Enhancements/debugconsole.cpp b/soh/soh/Enhancements/debugconsole.cpp index 1fe98ab53..445134f2a 100644 --- a/soh/soh/Enhancements/debugconsole.cpp +++ b/soh/soh/Enhancements/debugconsole.cpp @@ -509,7 +509,7 @@ void DebugConsole_LoadCVars() if (cfg.size() < 2) continue; if (cfg[1].find("\"") != std::string::npos) { std::string value(cfg[1]); - value.erase(std::remove(value.begin(), value.end(), '\"'), value.end()); + value.erase(std::remove(value.begin(), value.end(), '\"'), value.end()); CVar_SetString(cfg[0].c_str(), ImStrdup(value.c_str())); } if (is_number(cfg[1])) {