From 74f03692d20856110e34a38e6aa2590a1cad5d97 Mon Sep 17 00:00:00 2001 From: JappaWakka Date: Sat, 1 Feb 2025 11:29:37 +0100 Subject: [PATCH] Remove duplicate ping sounds for controller... in the Main Menu. For some reason, pressing B on the gamepad played the select sound twice. --- P3D/Screens/MainMenu/PressStartScreen.vb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/P3D/Screens/MainMenu/PressStartScreen.vb b/P3D/Screens/MainMenu/PressStartScreen.vb index 78a186453..691037805 100644 --- a/P3D/Screens/MainMenu/PressStartScreen.vb +++ b/P3D/Screens/MainMenu/PressStartScreen.vb @@ -596,11 +596,15 @@ Public Class NewMainMenuScreen ButtonResetSave() End Select End If - If Controls.Dismiss(False, True, True) Then + If Controls.Dismiss(False, True, False) Then SoundManager.PlaySound("select") DismissProfile() _GameJoltButtonIndex = 0 End If + If Controls.Dismiss(False, False, True) Then + DismissProfile() + _GameJoltButtonIndex = 0 + End If ' Try to load the GameJolt profile once the player has logged in. _MainProfiles(1).LoadGameJolt() End If