Possible need to close:
Enable SDL 0
If you mean setting DWORD Enable SDL to 0 under HKLM\System\CurrentControlSet\Services\winebus, I just tried that and it doesn't work.
I'm not even convinced that key does anything, I grepped through the proton-9.0 tree and the only registry keys I found related to SDL that seem to do something are in these functions:
I don't have device, so I'm not quite sure what happened.
You can open the log "WINEDEBUG=+dinput,+xinput,+hid" to view the out content.
I have a similar problem. Here is what I've learned over the past two weeks, some things are from reading wine.org's gitlab. Firstly the requested button an axis assigned numbers must be contiguous, the HID/electrical docs just don't support anything else. All the other issues come from this.
Let's take a look at two controllers and just looking at the buttons as it's clearest to see the issue.
The HORI pad has 2 as "options", it's just under start, and 3 is the first button on the top row. X or square.
As such somewhere there needs to be an entry for every physical controller, even the $5 aliexpress NES controllers.
More info here:
https://github.com/Grumbel/jstest-gtk/issues/30
I'm going to look at this source to see what I can learn.
I also did: https://gitlab.com/-/snippets/4863161
I'm trying to remap the axes of a Logitech Extreme 3D Pro controller for Hardwar (appid 1500540), which uses DirectInput and only supports binding the throttle to the Z axis (which is yaw on the joystick) or Slider1/2 (which are not mapped). The throttle that I'd like to use as Slider1 is mapped to Rx in
joy.cplAccording to the Wine docs, you can add a SZ entry under
HKCU\Software\Wine\DirectInputnamed after the joydev name of the device to remap the axes, in my case I added these entries (first is the joydev device name, the second is what you see throughjoy.cpl):This doesn't work; when I run
joy.cplI still see the joystick throttle still bound to Rx and not Slider1.Is this method of remapping joystick axes still supported? I went through the codebase searching for
Software\\Wine\\DirectInputand found a couple hits but I couldn't figure out how it was being used or where this mapping is done.The Wine wiki also mentions grepping the wine debug logs for
joydev_enum_device, but that doesn't turn up. The joystick name only turns up in ahid_joystick_enum_devicelog.I also found some references to
Software\Wine\DirectInput\JoysticksandSoftware\Wine\DirectInput\Mapping\[username]\[device]\[guid], are these useful/documented anywhere?