summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/SettingsHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/Src/SettingsHandler.cpp')
-rw-r--r--Source/Core/Common/Src/SettingsHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/SettingsHandler.cpp b/Source/Core/Common/Src/SettingsHandler.cpp
index 46b4170fcb..3bd9b27c2f 100644
--- a/Source/Core/Common/Src/SettingsHandler.cpp
+++ b/Source/Core/Common/Src/SettingsHandler.cpp
@@ -45,7 +45,7 @@ const std::string SettingsHandler::GetValue(const std::string key)
else
{
toFind = key + "=";
- size_t found = decoded.find(toFind);
+ found = decoded.find(toFind);
if (found == 0)
{
size_t delimFound = decoded.find(delim, found + toFind.length());