summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Config
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/Config')
-rw-r--r--Source/Core/Common/Config/Section.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Config/Section.h b/Source/Core/Common/Config/Section.h
index 4b4ba263ad..8b36ce157e 100644
--- a/Source/Core/Common/Config/Section.h
+++ b/Source/Core/Common/Config/Section.h
@@ -65,7 +65,7 @@ public:
T Get(const std::string& key, const T& default_value) const
{
T value;
- Get(key, value, default_value);
+ Get(key, &value, default_value);
return value;
}