this post was submitted on 14 Apr 2025
7 points (81.8% liked)

Elite Dangerous

1141 readers
1 users here now

Elite Dangerous related community. Tips and Tricks about the game.

1.) No NSFW content 2.) Don't fly without rebuy

founded 2 years ago
MODERATORS
 

I recently got the Winwing Ursa Minor Space L and Fighter R. My OS registers all buttons and axes in evtest. When I try to set up key binds in ED it doesn’t register most of the inputs from either stick. I have tried with steam input disabled and enabled, and it seems to not change anything.

I’m running Linux Mint 22.1. If any other info is helpful to troubleshoot, let me know.

you are viewing a single comment's thread
view the rest of the comments
[–] bekopharm@discuss.tchncs.de 2 points 1 month ago (2 children)

Hey. Only reading this now. The problem is that Wine or Proton love to default additional devices to XINPUT but what you really want is HID. This is set in the system reg file of the WINEPREFIX that Steam created. oc you must also disable controller remapping for the sticks in Steam. That's Game Settings => Controller => Steam Input Deactivated.

There are a couple of options to fix this. Locate the wine / proton prefix in question and set it to WINEPREFIX so wine can find it. Make sure the game is NOT running. Have an idea how this might look (you WILL have to adjust that path):

export WINEPREFIX=/mnt/games/steamapps/compatdata/359320/pfx
wine regedit

This launches the registry editor. Now locate HKEY_LOCAL_MACHINE => System => CurrentControlSet => Enum

Here are two categories: WINEBUS and WINEXINPUT. The joysticks are saved here as "VID_" + $VendorID + $ModelID.

Check all for the key "Service" and make sure they are set to "winehid" and not "xinput". Check all for the key "CompatibleIDs" and make sure they are set to "WINEBUS\WINE_COMP_HID" Check all for the key "Class" and make sure they are set to "HIDClass"

You can prevent this somewhat with various DWORDs. See https://gitlab.winehq.org/wine/wine/-/wikis/Useful-Registry-Keys for reference.

Particular useful are: "Enable SDL" = 0, "Map Controllers" = 0, "DisableHidraw" => 0

You can also start the GameController Setup and set some of these here:

export WINEPREFIX=/mnt/games/steamapps/compatdata/359320/pfx
wine control

If some device still shows up as XInput select it and click Override. Test on the DInput tab if everything works. Mind that some older Wine versions will only show 32 buttons but this is a graphical limitation and the buttons do register.

When all that is done/checked quit all wine processes and try again with Steam.

[–] just2look@lemm.ee 2 points 3 weeks ago (1 children)

Hey, I was slow actually implementing this. It works perfectly now though, and I really appreciate it!

[–] bekopharm@discuss.tchncs.de 2 points 3 weeks ago

Glad it worked 👍