mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 14:49:22 +00:00
Section: Fix Section::Get
This commit is contained in:
parent
af33ae0e02
commit
bd3e493695
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ public:
|
||||||
T Get(const std::string& key, const T& default_value) const
|
T Get(const std::string& key, const T& default_value) const
|
||||||
{
|
{
|
||||||
T value;
|
T value;
|
||||||
Get(key, value, default_value);
|
Get(key, &value, default_value);
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue