diff options
author | Xpl0itR <xpl0itr@outlook.com> | 2020-12-01 22:02:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 23:02:27 +0100 |
commit | bd8d28c59d53ecd63dc00288fd0bf220b09773ee (patch) | |
tree | 0bb0b556a74b6defbf381f530194316f673eb0b9 /Ryujinx.Common/Configuration/ConfigurationFileFormat.cs | |
parent | f6d88558b1780df25088042771a75ab174f0a06c (diff) |
Add option to start games in fullscreen mode (#1580)
* Add option to start games in fullscreen mode
* Add command line option
* Use pascal case on menu item
Diffstat (limited to 'Ryujinx.Common/Configuration/ConfigurationFileFormat.cs')
-rw-r--r-- | Ryujinx.Common/Configuration/ConfigurationFileFormat.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs b/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs index bfb1cdc1..5618b228 100644 --- a/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs @@ -14,7 +14,7 @@ namespace Ryujinx.Configuration /// <summary> /// The current version of the file format /// </summary> - public const int CurrentVersion = 16; + public const int CurrentVersion = 17; public int Version { get; set; } @@ -189,6 +189,11 @@ namespace Ryujinx.Configuration public string CustomThemePath { get; set; } /// <summary> + /// Start games in fullscreen mode + /// </summary> + public bool StartFullscreen { get; set; } + + /// <summary> /// Enable or disable keyboard support (Independent from controllers binding) /// </summary> public bool EnableKeyboard { get; set; } |