From 0a7c6caedffd59011077b49cd6493c7a841a66f5 Mon Sep 17 00:00:00 2001 From: CJ Bok Date: Fri, 17 Apr 2020 01:18:54 +0200 Subject: 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 --- Ryujinx.Common/Configuration/ConfigurationFileFormat.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Ryujinx.Common/Configuration/ConfigurationFileFormat.cs') 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 /// /// The current version of the file format /// - public const int CurrentVersion = 4; + public const int CurrentVersion = 5; public int Version { get; set; } @@ -93,6 +93,11 @@ namespace Ryujinx.Configuration /// public string SystemTimeZone { get; set; } + /// + /// Change System Time Offset in seconds + /// + public long SystemTimeOffset { get; set; } + /// /// Enables or disables Docked Mode /// -- cgit v1.2.3