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:
parent
68a3317536
commit
74f03692d2
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue