summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/IniFile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/Src/IniFile.cpp')
-rw-r--r--Source/Core/Common/Src/IniFile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Common/Src/IniFile.cpp b/Source/Core/Common/Src/IniFile.cpp
index 84f5a099d1..b9e46feb28 100644
--- a/Source/Core/Common/Src/IniFile.cpp
+++ b/Source/Core/Common/Src/IniFile.cpp
@@ -90,12 +90,12 @@ std::string* IniFile::Section::GetLine(const char* key, std::string* valueOut, s
void IniFile::Section::Set(const char* key, const char* newValue)
{
- std::string value, comment;
- std::string* line = GetLine(key, &value, &comment);
+ std::string value, commented;
+ std::string* line = GetLine(key, &value, &commented);
if (line)
{
// Change the value - keep the key and comment
- *line = StripSpaces(key) + " = " + newValue + comment;
+ *line = StripSpaces(key) + " = " + newValue + commented;
}
else
{