Make Device Location Name configuration (custom TZ) (#1031)

This permit to use arbitrary timezone (instead of UTC).

Useful for games like ACNH.
This commit is contained in:
Thog
2020-03-25 23:23:21 +01:00
committed by GitHub
parent 82c3df83c4
commit 0dd38028cb
6 changed files with 148 additions and 27 deletions

View File

@ -16,6 +16,11 @@ namespace Ryujinx.Configuration
{
public class ConfigurationFileFormat
{
/// <summary>
/// The current version of the file format
/// </summary>
public const int CurrentVersion = 3;
public int Version { get; set; }
/// <summary>
@ -78,6 +83,11 @@ namespace Ryujinx.Configuration
/// </summary>
public Region SystemRegion { get; set; }
/// <summary>
/// Change System TimeZone
/// </summary>
public string SystemTimeZone { get; set; }
/// <summary>
/// Enables or disables Docked Mode
/// </summary>