(Apple) Build fixes

This commit is contained in:
Twinaphex 2014-10-04 15:38:31 +02:00
parent f20baeb221
commit a6dabc5b78
2 changed files with 7 additions and 2 deletions

View File

@ -199,7 +199,7 @@ static void hid_manager_device_attached(void* context, IOReturn result,
device_name, sizeof(g_settings.input.device_names));
input_config_autoconfigure_joypad(connection->slot,
device_name, connection->v_id, connection->p_id, apple_joypad.ident);
device_name, connection->v_id, connection->p_id, apple_hid_joypad.ident);
RARCH_LOG("Port %d: %s.\n", connection->slot, device_name);
}
}

View File

@ -83,7 +83,12 @@ rarch_joypad_driver_t *joypad_drivers[] = {
&sdl_joypad,
#endif
#ifdef __MACH__
&apple_joypad,
#ifdef HAVE_HID
&apple_hid_joypad,
#endif
#ifdef IOS
&apple_ios_joypad,
#endif
#endif
#ifdef __QNX__
&qnx_joypad,