Remove duplicate ping sounds for controller...

in the Main Menu. For some reason, pressing B on the gamepad played the select sound twice.
This commit is contained in:
JappaWakka 2025-02-01 11:29:37 +01:00
parent 68a3317536
commit 74f03692d2
1 changed files with 5 additions and 1 deletions

View File

@ -596,11 +596,15 @@ Public Class NewMainMenuScreen
ButtonResetSave() ButtonResetSave()
End Select End Select
End If End If
If Controls.Dismiss(False, True, True) Then If Controls.Dismiss(False, True, False) Then
SoundManager.PlaySound("select") SoundManager.PlaySound("select")
DismissProfile() DismissProfile()
_GameJoltButtonIndex = 0 _GameJoltButtonIndex = 0
End If 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. ' Try to load the GameJolt profile once the player has logged in.
_MainProfiles(1).LoadGameJolt() _MainProfiles(1).LoadGameJolt()
End If End If