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 namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum NpadIdType : uint public enum NpadIdType : int
{ {
Player1 = 0, Player1 = 0,
Player2 = 1, Player2 = 1,
@ -13,4 +13,4 @@
Unknown = 16, Unknown = 16,
Handheld = 32 Handheld = 32
} }
} }