Category: Input
JoyCount()
Integer
Returns the number of controller slots supported by the runtime.
Use JoyConnected to check whether a specific slot currently has a controller attached.
Dim joy As Integer
For joy = 0 To JoyCount() - 1
If JoyConnected(joy) Then
End
End If
Next joy