mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13:40 +01:00
fix: gamepad self-test
This commit is contained in:
parent
4719e8d612
commit
e4bb7a83f0
1 changed files with 3 additions and 3 deletions
|
|
@ -18,9 +18,9 @@ namespace Dalamud.Interface.Internal.Windows.SelfTest.AgingSteps
|
|||
|
||||
ImGui.Text("Hold down North, East, L1");
|
||||
|
||||
if (gamepadState.Pressed(GamepadButtons.North) == 1
|
||||
&& gamepadState.Pressed(GamepadButtons.East) == 1
|
||||
&& gamepadState.Pressed(GamepadButtons.L1) == 1)
|
||||
if (gamepadState.Raw(GamepadButtons.North) == 1
|
||||
&& gamepadState.Raw(GamepadButtons.East) == 1
|
||||
&& gamepadState.Raw(GamepadButtons.L1) == 1)
|
||||
{
|
||||
return SelfTestStepResult.Pass;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue