Fix 2 other nits

This commit is contained in:
Thomas Guillemard 2019-05-01 13:34:46 +02:00
commit 8d1742c841
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ namespace Ryujinx.HLE.Input
{ {
public struct HidKeyboard public struct HidKeyboard
{ {
public int Modifier; public int Modifier;
public int[] Keys; public int[] Keys;
} }
} }

View file

@ -180,7 +180,7 @@ namespace Ryujinx
hidKeyboard = new HidKeyboard hidKeyboard = new HidKeyboard
{ {
Modifier = 0, Modifier = 0,
Keys = new int[0x8] Keys = new int[0x8]
}; };
} }