mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Settings: Fix incorrect config key for enabled analytics.
This commit is contained in:
parent
a31c204ca8
commit
c74ea6696e
@ -515,14 +515,14 @@ void Settings::SetAnalyticsEnabled(bool enabled)
|
||||
if (enabled == IsAnalyticsEnabled())
|
||||
return;
|
||||
|
||||
Config::SetBase(Config::MAIN_ANALYTICS_PERMISSION_ASKED, enabled);
|
||||
Config::SetBase(Config::MAIN_ANALYTICS_ENABLED, enabled);
|
||||
|
||||
emit AnalyticsToggled(enabled);
|
||||
}
|
||||
|
||||
bool Settings::IsAnalyticsEnabled() const
|
||||
{
|
||||
return Config::Get(Config::MAIN_ANALYTICS_PERMISSION_ASKED);
|
||||
return Config::Get(Config::MAIN_ANALYTICS_ENABLED);
|
||||
}
|
||||
|
||||
void Settings::SetToolBarVisible(bool visible)
|
||||
|
Loading…
Reference in New Issue
Block a user