Browse Source

Fix input in SMO

Unsure if this will break other games though.
Please test. :)
DatBoiJay3 7 years ago
parent
commit
39b8e6bc37
1 changed files with 2 additions and 3 deletions
  1. 2 3
      Ryujinx.HLE/Hid/Hid.cs

+ 2 - 3
Ryujinx.HLE/Hid/Hid.cs

@@ -131,8 +131,7 @@ namespace Ryujinx.HLE.Input
             long BaseControllerOffset = Position + HidControllersOffset + 8 * HidControllerSize;
 
             HidControllerType Type =
-                HidControllerType.ControllerType_Handheld |
-                HidControllerType.ControllerType_JoyconPair;
+                HidControllerType.ControllerType_Handheld;
 
             bool IsHalf = false;
 
@@ -276,4 +275,4 @@ namespace Ryujinx.HLE.Input
             return (long)((ulong)Environment.TickCount * 19_200);
         }
     }
-}
+}