The Nintendo Online classic controllers and Joy-Cons shouldn't show up as Switch Pro controllers

This commit is contained in:
Sam Lantinga
2022-08-03 13:53:49 -07:00
parent 6e1ee1d4a5
commit a8120104ad
3 changed files with 9 additions and 13 deletions

View File

@@ -410,6 +410,11 @@ HIDAPI_DriverSwitch_IsSupportedDevice(const char *name, SDL_GameControllerType t
return SDL_FALSE;
}
if (vendor_id == USB_VENDOR_NINTENDO) {
if (product_id == USB_PRODUCT_NINTENDO_SWITCH_JOY_CON_GRIP) {
return SDL_TRUE;
}
}
return (type == SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO) ? SDL_TRUE : SDL_FALSE;
}