aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Input/HidControllerType.cs
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2019-07-22 20:15:46 +0300
committerGitHub <noreply@github.com>2019-07-22 20:15:46 +0300
commitd254548548398977a45dbfc03f2cc091c5a74f03 (patch)
treee153a29676f6f83d44b25cc42ecd1efc8cc701e6 /Ryujinx.HLE/Input/HidControllerType.cs
parent1f3a34dd7a5977fc340de310b2109493e5e6973f (diff)
Little rewrite of HID input (#723)
* change hid sharedmem writing to use structures
Diffstat (limited to 'Ryujinx.HLE/Input/HidControllerType.cs')
-rw-r--r--Ryujinx.HLE/Input/HidControllerType.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Ryujinx.HLE/Input/HidControllerType.cs b/Ryujinx.HLE/Input/HidControllerType.cs
deleted file mode 100644
index 74bca365..00000000
--- a/Ryujinx.HLE/Input/HidControllerType.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-namespace Ryujinx.HLE.Input
-{
- [Flags]
- public enum HidControllerType
- {
- ProController = 1 << 0,
- Handheld = 1 << 1,
- NpadPair = 1 << 2,
- NpadLeft = 1 << 3,
- NpadRight = 1 << 4
- }
-} \ No newline at end of file