diff options
| author | Ac_K <Acoustik666@gmail.com> | 2018-06-12 02:54:41 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-12 02:54:41 +0000 |
| commit | 133082cb6d06f5c86b2962644a6d72fe746c47ee (patch) | |
| tree | ea4eff2c4a7fd92242f421fd92f42226637a9f03 | |
| parent | 76f3b1b3a4637ec72abfbb8cbc0679f2e0ca838f (diff) | |
| parent | 274c996ff119ab201060e5818bc74879c2826c62 (diff) | |
Merge pull request #153 from DatBoiJay3/hid-smo
Fix input in SMO
| -rw-r--r-- | Ryujinx.HLE/Hid/Hid.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Ryujinx.HLE/Hid/Hid.cs b/Ryujinx.HLE/Hid/Hid.cs index 054c4fac..2f007f1f 100644 --- a/Ryujinx.HLE/Hid/Hid.cs +++ b/Ryujinx.HLE/Hid/Hid.cs @@ -130,9 +130,7 @@ namespace Ryujinx.HLE.Input { long BaseControllerOffset = Position + HidControllersOffset + 8 * HidControllerSize; - HidControllerType Type = - HidControllerType.ControllerType_Handheld | - HidControllerType.ControllerType_JoyconPair; + HidControllerType Type = HidControllerType.ControllerType_Handheld; bool IsHalf = false; @@ -276,4 +274,4 @@ namespace Ryujinx.HLE.Input return (long)((ulong)Environment.TickCount * 19_200); } } -}
\ No newline at end of file +} |
