Page 2 of 2

Re: More than 4 Gamepads

Posted: Fri Apr 30, 2021 10:53 pm
by pericles
Ross wrote: Mon Apr 26, 2021 8:03 pm Sounds like a bug to me, though it could potentially be with your system/drivers/etc. Have you tried some of the other checks, like love.joystick.getJoystickCount, or love.joystick.getJoysticks? Have you tried different types of controllers?
love.joystick.getJoystickCount still return 4 when more than 4 controllers are connected
#love.joystick.getJoysticks same as love.joystick.getJoystickCount

Yeah, different types of controllers like DirectInput ones work without problems.

I had the same issue with Pro Evolution Soccer, but in PES I could fix it in their config.exe file since you can choose there if you want Xinput or DirectInput:
Image

But I didn't have the same luck with love2D

Re: More than 4 Gamepads

Posted: Fri Apr 30, 2021 10:54 pm
by pericles
pgimeno wrote: Mon Apr 26, 2021 8:31 pm I'd bet that this is not a Löve issue, but an upstream issue, either SDL or the OS.
Me too, tried with :

Code: Select all

sdl.SDL_SetHint("SDL_HINT_XINPUT_ENABLED", "0")
But didn't work or I just have no idea what I am doing ^^