From dc02ac08caa84456e8b280a3347ac8907b5249ff Mon Sep 17 00:00:00 2001 From: emmauss Date: Tue, 20 Nov 2018 02:01:36 +0200 Subject: Support other switch controller types (#487) * Make controllers modular, support changing controller type * return readable events * signal hid events * fix style --- Ryujinx.HLE/Input/HidControllerColorDesc.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Ryujinx.HLE/Input/HidControllerColorDesc.cs (limited to 'Ryujinx.HLE/Input/HidControllerColorDesc.cs') diff --git a/Ryujinx.HLE/Input/HidControllerColorDesc.cs b/Ryujinx.HLE/Input/HidControllerColorDesc.cs new file mode 100644 index 00000000..b8cf2a5e --- /dev/null +++ b/Ryujinx.HLE/Input/HidControllerColorDesc.cs @@ -0,0 +1,10 @@ +using System; + +namespace Ryujinx.HLE.Input +{ + [Flags] + public enum HidControllerColorDesc + { + ColorDesc_ColorsNonexistent = (1 << 1) + } +} \ No newline at end of file -- cgit v1.2.3