Fix condition
This commit is contained in:
parent
f043f4a5b7
commit
25b9426c72
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ namespace Ryujinx.HLE.HOS.Services.Hid.Irs
|
||||||
{
|
{
|
||||||
NpadIdType npadIdType = (NpadIdType)context.RequestData.ReadUInt32();
|
NpadIdType npadIdType = (NpadIdType)context.RequestData.ReadUInt32();
|
||||||
|
|
||||||
if (npadIdType >= NpadIdType.Player8 &&
|
if (npadIdType > NpadIdType.Player8 &&
|
||||||
npadIdType != NpadIdType.Unknown &&
|
npadIdType != NpadIdType.Unknown &&
|
||||||
npadIdType != NpadIdType.Handheld)
|
npadIdType != NpadIdType.Handheld)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue