From a1a17596efd5c18902d94e1d72f177dfce7cc553 Mon Sep 17 00:00:00 2001 From: JappaWakka Date: Fri, 2 May 2025 10:21:22 +0200 Subject: [PATCH] Allow joystick left/right in summary screen --- P3D/Screens/Pokemon/SummaryScreen.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/P3D/Screens/Pokemon/SummaryScreen.vb b/P3D/Screens/Pokemon/SummaryScreen.vb index f8d87126c..f9726d383 100644 --- a/P3D/Screens/Pokemon/SummaryScreen.vb +++ b/P3D/Screens/Pokemon/SummaryScreen.vb @@ -664,7 +664,7 @@ If _pageOpening = False And _pageClosing = False And _partyIndex > -1 And _moveSelected = False 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 _partyIndex -= 1 GetYOffset() @@ -673,7 +673,7 @@ 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 _partyIndex += 1 GetYOffset()