From 32d3f3f69024835d375401222b9abfbd32db37a5 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Thu, 19 Mar 2020 23:37:55 +0100 Subject: Implement GetRegionCode and add the RegionCode to settings (#999) This implement `GetRegionCode` accordingly to RE. I've added a setting in the GUI and a field in the Configuration file with a way to update the Configuration file if needed. --- Ryujinx.Common/Configuration/System/Region.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Ryujinx.Common/Configuration/System/Region.cs (limited to 'Ryujinx.Common/Configuration/System') diff --git a/Ryujinx.Common/Configuration/System/Region.cs b/Ryujinx.Common/Configuration/System/Region.cs new file mode 100644 index 00000000..54b1c36f --- /dev/null +++ b/Ryujinx.Common/Configuration/System/Region.cs @@ -0,0 +1,13 @@ +namespace Ryujinx.Configuration.System +{ + public enum Region + { + Japan, + USA, + Europe, + Australia, + China, + Korea, + Taiwan + } +} -- cgit v1.2.3