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:
David Lawrie 2016-06-14 20:33:52 -07:00 committed by Alexandre Julliard
parent 9dcfb97515
commit fe88161a2a
1 changed files with 3 additions and 0 deletions

View File

@ -514,6 +514,9 @@ static void collect_joystick_elements(joystick_t* joystick, IOHIDElementRef coll
}
break;
}
case kIOHIDElementTypeFeature:
/* Describes input and output elements not intended for consumption by the end user. Ignoring. */
break;
default:
FIXME("Unhandled type %i\n",type);
break;