From 205f815cd0b18982d107cb8a1f68d3fcc256a2a0 Mon Sep 17 00:00:00 2001 From: Jeffrey Crowell Date: Fri, 8 Jul 2022 01:06:43 -0400 Subject: [PATCH] expandtab --- soh/soh/Enhancements/debugconsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])) {