diff options
Diffstat (limited to 'Ryujinx.Common/Configuration/Hid/ControllerType.cs')
| -rw-r--r-- | Ryujinx.Common/Configuration/Hid/ControllerType.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Ryujinx.Common/Configuration/Hid/ControllerType.cs b/Ryujinx.Common/Configuration/Hid/ControllerType.cs deleted file mode 100644 index 70f811c8..00000000 --- a/Ryujinx.Common/Configuration/Hid/ControllerType.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Ryujinx.Common.Utilities; -using System; -using System.Text.Json.Serialization; - -namespace Ryujinx.Common.Configuration.Hid -{ - // This enum was duplicated from Ryujinx.HLE.HOS.Services.Hid.PlayerIndex and should be kept identical - [Flags] - [JsonConverter(typeof(TypedStringEnumConverter<ControllerType>))] - public enum ControllerType : int - { - None, - ProController = 1 << 0, - Handheld = 1 << 1, - JoyconPair = 1 << 2, - JoyconLeft = 1 << 3, - JoyconRight = 1 << 4, - Invalid = 1 << 5, - Pokeball = 1 << 6, - SystemExternal = 1 << 29, - System = 1 << 30 - } -}
\ No newline at end of file |
