Fix homebrew input (#528)

* fix homebrew input
This commit is contained in:
emmauss
2018-12-07 22:59:38 +02:00
committed by GitHub
parent 5b4382f459
commit f1529b1bc2
4 changed files with 15 additions and 1 deletions

View File

@ -81,6 +81,12 @@
Device.Memory.WriteInt64(controllerOffset + 0x28,
(Connected ? (uint)HidControllerConnState.ControllerStateConnected : 0) |
(_currentLayout == HidControllerLayouts.HandheldJoined ? (uint)HidControllerConnState.ControllerStateWired : 0));
controllerOffset = WriteInput(buttons, leftStick, rightStick, HidControllerLayouts.Main);
Device.Memory.WriteInt64(controllerOffset + 0x28,
(Connected ? (uint)HidControllerConnState.ControllerStateWired : 0) |
(uint)HidControllerConnState.ControllerStateWired);
}
}
}