Fix code style

This commit is contained in:
Thog 2019-04-26 19:15:43 +02:00
parent 29c3620b40
commit 542a83d431
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6
2 changed files with 10 additions and 5 deletions

View file

@ -39,7 +39,8 @@ namespace Ryujinx.HLE.Input
PrimaryController.Connect(controllerId);
}
public void InitilizeKeyboard() {
public void InitilizeKeyboard()
{
_device.Memory.FillWithZeros(HidPosition + HidKeyboardOffset, HidKeyboardSize);
}
@ -136,7 +137,8 @@ namespace Ryujinx.HLE.Input
}
}
public void WriteKeyboard(HidKeyboard keyboard) {
public void WriteKeyboard(HidKeyboard keyboard)
{
long keyboardOffset = HidPosition + HidKeyboardOffset;
long lastEntry = _device.Memory.ReadInt64(keyboardOffset + 0x10);
long currEntry = (lastEntry + 1) % HidEntryCount;

View file

@ -118,12 +118,14 @@ namespace Ryujinx.UI.Input
return buttons;
}
class KeyMapping {
class KeyMapping
{
public Key TargetKey;
public byte Target;
}
static KeyMapping[] KEY_MAPPING = new KeyMapping[] {
static KeyMapping[] KEY_MAPPING = new KeyMapping[]
{
new KeyMapping { TargetKey = Key.A, Target = 0x4 },
new KeyMapping { TargetKey = Key.B, Target = 0x5 },
new KeyMapping { TargetKey = Key.C, Target = 0x6 },
@ -251,7 +253,8 @@ namespace Ryujinx.UI.Input
new KeyMapping { TargetKey = Key.WinRight, Target = 0xE7 },
};
static KeyMapping[] KEY_MODIFIER_MAPPING = new KeyMapping[] {
static KeyMapping[] KEY_MODIFIER_MAPPING = new KeyMapping[]
{
new KeyMapping { TargetKey = Key.ControlLeft, Target = 0 },
new KeyMapping { TargetKey = Key.ShiftLeft, Target = 1 },
new KeyMapping { TargetKey = Key.AltLeft, Target = 2 },