aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Hid/HidControllerButtons.cs
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2018-11-20 02:01:36 +0200
committerAc_K <Acoustik666@gmail.com>2018-11-20 01:01:36 +0100
commitdc02ac08caa84456e8b280a3347ac8907b5249ff (patch)
treeef71cf05cba18da65c930328f955352f4859e67f /Ryujinx.HLE/Hid/HidControllerButtons.cs
parent0c36835f6de563cd6b4a4c82cac25fbcfb0a6231 (diff)
Support other switch controller types (#487)
* Make controllers modular, support changing controller type * return readable events * signal hid events * fix style
Diffstat (limited to 'Ryujinx.HLE/Hid/HidControllerButtons.cs')
-rw-r--r--Ryujinx.HLE/Hid/HidControllerButtons.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/Ryujinx.HLE/Hid/HidControllerButtons.cs b/Ryujinx.HLE/Hid/HidControllerButtons.cs
deleted file mode 100644
index f41d17e1..00000000
--- a/Ryujinx.HLE/Hid/HidControllerButtons.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-
-namespace Ryujinx.HLE.Input
-{
- [Flags]
- public enum HidControllerButtons
- {
- KEY_A = (1 << 0),
- KEY_B = (1 << 1),
- KEY_X = (1 << 2),
- KEY_Y = (1 << 3),
- KEY_LSTICK = (1 << 4),
- KEY_RSTICK = (1 << 5),
- KEY_L = (1 << 6),
- KEY_R = (1 << 7),
- KEY_ZL = (1 << 8),
- KEY_ZR = (1 << 9),
- KEY_PLUS = (1 << 10),
- KEY_MINUS = (1 << 11),
- KEY_DLEFT = (1 << 12),
- KEY_DUP = (1 << 13),
- KEY_DRIGHT = (1 << 14),
- KEY_DDOWN = (1 << 15),
- KEY_LSTICK_LEFT = (1 << 16),
- KEY_LSTICK_UP = (1 << 17),
- KEY_LSTICK_RIGHT = (1 << 18),
- KEY_LSTICK_DOWN = (1 << 19),
- KEY_RSTICK_LEFT = (1 << 20),
- KEY_RSTICK_UP = (1 << 21),
- KEY_RSTICK_RIGHT = (1 << 22),
- KEY_RSTICK_DOWN = (1 << 23),
- KEY_SL = (1 << 24),
- KEY_SR = (1 << 25)
- }
-} \ No newline at end of file