Fix uint -> int typo. (#2245)

This commit is contained in:
EmulationFanatic 2021-04-24 17:50:00 -07:00 committed by GitHub
parent 992133e9ca
commit cac4f31dfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Hid
{
public enum NpadIdType : uint
public enum NpadIdType : int
{
Player1 = 0,
Player2 = 1,
@ -13,4 +13,4 @@
Unknown = 16,
Handheld = 32
}
}
}