diff options
author | CJ Bok <cjbok@ziggo.nl> | 2020-04-17 01:18:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 09:18:54 +1000 |
commit | 0a7c6caedffd59011077b49cd6493c7a841a66f5 (patch) | |
tree | c32ef5e713d0e7e1b1ec65e7a2f17241d9167398 /Ryujinx.Common/Configuration/ConfigurationFileFormat.cs | |
parent | e4ee61d6c3984d108a9fd9e29c86dd154a04d0c5 (diff) |
System Time Offset Implementation (#1101)
* System Time Offset Implementation
* Addressed @Thog's comments
* Addressed JD's comments
* Addressed @Thog's and @AcK77's comments
* formatting correction
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 f47dc4b3..812dc2c3 100644 --- a/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx.Common/Configuration/ConfigurationFileFormat.cs @@ -19,7 +19,7 @@ namespace Ryujinx.Configuration /// <summary> /// The current version of the file format /// </summary> - public const int CurrentVersion = 4; + public const int CurrentVersion = 5; public int Version { get; set; } @@ -94,6 +94,11 @@ namespace Ryujinx.Configuration public string SystemTimeZone { get; set; } /// <summary> + /// Change System Time Offset in seconds + /// </summary> + public long SystemTimeOffset { get; set; } + + /// <summary> /// Enables or disables Docked Mode /// </summary> public bool DockedMode { get; set; } |