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; }