winejoystick.drv: Ignore feature elements.
"Describes input and output elements not intended for consumption by the end user." Ignore, as otherwise, comes up as a FIXME in Trace logs. Signed-off-by: David Lawrie <david.dljunk@gmail.com> Signed-off-by: Ken Thomases <ken@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9dcfb97515
commit
fe88161a2a
|
@ -514,6 +514,9 @@ static void collect_joystick_elements(joystick_t* joystick, IOHIDElementRef coll
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case kIOHIDElementTypeFeature:
|
||||||
|
/* Describes input and output elements not intended for consumption by the end user. Ignoring. */
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
FIXME("Unhandled type %i\n",type);
|
FIXME("Unhandled type %i\n",type);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue