Enable Docked Mode by Default (#1953)

Enables Docked Mode by default, since I see no reason to keep it off by Default.
This commit is contained in:
ShahilSharma 2021-01-27 18:55:01 -08:00 committed by GitHub
parent 4b7c7dab9e
commit 9eb0ab05c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -479,7 +479,7 @@ namespace Ryujinx.Configuration
System.Region.Value = Region.USA; System.Region.Value = Region.USA;
System.TimeZone.Value = "UTC"; System.TimeZone.Value = "UTC";
System.SystemTimeOffset.Value = 0; System.SystemTimeOffset.Value = 0;
System.EnableDockedMode.Value = false; System.EnableDockedMode.Value = true;
EnableDiscordIntegration.Value = true; EnableDiscordIntegration.Value = true;
CheckUpdatesOnStart.Value = true; CheckUpdatesOnStart.Value = true;
ShowConfirmExit.Value = true; ShowConfirmExit.Value = true;

View file

@ -18,7 +18,7 @@
"system_region": "USA", "system_region": "USA",
"system_time_zone": "UTC", "system_time_zone": "UTC",
"system_time_offset": 0, "system_time_offset": 0,
"docked_mode": false, "docked_mode": true,
"enable_discord_integration": true, "enable_discord_integration": true,
"check_updates_on_start": true, "check_updates_on_start": true,
"show_confirm_exit": true, "show_confirm_exit": true,

View file

@ -1171,7 +1171,7 @@
"type": "boolean", "type": "boolean",
"title": "Enable Docked Mode", "title": "Enable Docked Mode",
"description": "Enables or disables Docked Mode", "description": "Enables or disables Docked Mode",
"default": false, "default": true,
"examples": [ "examples": [
true, true,
false false