KEYBIND_STRIP:GenerateGamepadBackButtonDescriptor(function()
PlaySound(SOUNDS.DIALOG_DECLINE)
if self.previousState == "AccountLogin" then
CancelLogin()
end
PregameStateManager_SetState(self.previousState)
end)
KEYBIND_STRIP:GenerateGamepadBackButtonDescriptor(function()
-- if we just kicked off a platforms list load request, wait for that to finish before we let the player got back to IIS
if self.canCancelOrLoadPlatforms == true then
PlaySound(SOUNDS.DIALOG_DECLINE)
self.canCancelOrLoadPlatforms = false
PregameStateManager_SetState("AccountLogin")
end
end)