Allow joystick left/right in summary screen

This commit is contained in:
JappaWakka 2025-05-02 10:21:22 +02:00
parent d733fcda6d
commit a1a17596ef

View File

@ -664,7 +664,7 @@
If _pageOpening = False And _pageClosing = False And _partyIndex > -1 And _moveSelected = False Then If _pageOpening = False And _pageClosing = False And _partyIndex > -1 And _moveSelected = False Then
If _party.Length > 1 Then If _party.Length > 1 Then
If Controls.Left(True, True, False, True, False, True) Or ControllerHandler.ButtonPressed(Buttons.LeftShoulder) Then If Controls.Left(True, True, False, True, True, True) Or ControllerHandler.ButtonPressed(Buttons.LeftShoulder) Then
If _partyIndex > 0 Then If _partyIndex > 0 Then
_partyIndex -= 1 _partyIndex -= 1
GetYOffset() GetYOffset()
@ -673,7 +673,7 @@
End If End If
End If End If
If Controls.Right(True, True, False, True, False, True) Or ControllerHandler.ButtonPressed(Buttons.RightShoulder) Then If Controls.Right(True, True, False, True, True, True) Or ControllerHandler.ButtonPressed(Buttons.RightShoulder) Then
If _partyIndex < _party.Count - 1 Then If _partyIndex < _party.Count - 1 Then
_partyIndex += 1 _partyIndex += 1
GetYOffset() GetYOffset()