jgeumlek / MoltenGamepad

Flexible Linux input device translator, geared for gamepads
MIT License
280 stars 42 forks source link

Invert axis doesn't work #126

Closed bekopharm closed 1 year ago

bekopharm commented 1 year ago

MoltenGamepad version 1.2.1

According to docs this should invert the axis direction:

wiimote.cc_left_x = left_x-

Tried a lot of variations but none works. The moment I add a minus to the mix the whole axis (X AND Y) goes dead:

abs_rz = "left_y", "Left stick Y axis"
abs_z = "left_x-", "Left stick X axis"

It works just fine without the minus but also does not invert the axis direction.

Inverting both does also not work (Tried that because the whole axis will also not work if x OR y are missing)

bekopharm commented 1 year ago

Nvm, I confused gendevices with profiles.

It works when dropped in a profile file and loaded from there 🤦