diff options
Diffstat (limited to 'Source/Core/Common/Src/IniFile.cpp')
| -rw-r--r-- | Source/Core/Common/Src/IniFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/IniFile.cpp b/Source/Core/Common/Src/IniFile.cpp index 63ef71146d..c44da39e94 100644 --- a/Source/Core/Common/Src/IniFile.cpp +++ b/Source/Core/Common/Src/IniFile.cpp @@ -162,7 +162,7 @@ std::string* IniFile::GetLine(Section* section, const char* key, std::string* va std::string lineKey; ParseLine(line, &lineKey, valueOut, commentOut); - if (!stricmp(lineKey.c_str(), key)) + if (!strcasecmp(lineKey.c_str(), key)) { return &line; } |
