Merge pull request #4110 from citra-emu/revert-4109-rpc-opt

Revert "Set Discord Rich Presence "OFF" by default"
This commit is contained in:
James Rowe 2018-08-20 10:59:53 -06:00 committed by GitHub
commit 7279335fc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ void Config::ReadValues() {
qt_config->beginGroup("UI");
UISettings::values.theme = ReadSetting("theme", UISettings::themes[0].second).toString();
UISettings::values.enable_discord_presence =
ReadSetting("enable_discord_presence", false).toBool();
ReadSetting("enable_discord_presence", true).toBool();
qt_config->beginGroup("Updater");
UISettings::values.check_for_update_on_start =
@ -442,7 +442,7 @@ void Config::SaveValues() {
qt_config->beginGroup("UI");
WriteSetting("theme", UISettings::values.theme, UISettings::themes[0].second);
WriteSetting("enable_discord_presence", UISettings::values.enable_discord_presence, false);
WriteSetting("enable_discord_presence", UISettings::values.enable_discord_presence, true);
qt_config->beginGroup("Updater");
WriteSetting("check_for_update_on_start", UISettings::values.check_for_update_on_start, true);