Merge pull request #153 from DatBoiJay3/hid-smo

Fix input in SMO
This commit is contained in:
Ac_K 2018-06-12 02:54:41 +00:00 committed by GitHub
commit 133082cb6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
}
}
}