On Sat, Jan 17, 2015 at 9:01 PM, <[email protected]> wrote: > Hi. > Normally I use very simple config : > > [xboxdrv] > extra-devices=false > extra-events=false > deadzone=4000 > next-controller = false > mouse = false > mimic-xpad = false > mimic-xpad-wireless = true > > Today I wanted to remap some buttons to keyboard, so I added a new section > to this config: > > [ui-buttonmap] > A=KEY_M > B=KEY_Z > X=KEY_SPACE > Y=BTN_Y > > Button works fine, but left stick moves a mouse pointer now . > How can I avoid that?
Try removing: extra-devices=false extra-events=false next-controller = false mouse = false mimic-xpad = false Not sure why you would end up with a mouse, but without extra-devices all the events will get put into a single virtual device and having joystick and keyboard events in a single device might confuse some apps. Also check with evtest and xinput list what devices are actually created. -- You received this message because you are subscribed to the Google Groups "xboxdrv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/xboxdrv. For more options, visit https://groups.google.com/d/optout.
