diff --git a/dlls/dinput/joystick_osx.c b/dlls/dinput/joystick_osx.c index 04af1e55042..9dafcb506fc 100644 --- a/dlls/dinput/joystick_osx.c +++ b/dlls/dinput/joystick_osx.c @@ -326,6 +326,12 @@ static void get_osx_device_elements(JoystickImpl *device) } break; } + case kIOHIDElementTypeInput_Axis: + { + CFArrayInsertValueAtIndex(device->elementCFArrayRef, axes, tIOHIDElementRef); + axes++; + break; + } default: FIXME("Unhandled type %i\n",eleType); }