Added support for the ROG RAIKIRI

This commit is contained in:
Sam Lantinga 2024-07-03 13:54:00 -07:00
parent d7a875432b
commit a04596c9a7
5 changed files with 10 additions and 0 deletions

View file

@ -2991,6 +2991,11 @@ SDL_bool SDL_IsJoystickXboxSeriesX(Uint16 vendor_id, Uint16 product_id)
return SDL_TRUE;
}
}
if (vendor_id == USB_VENDOR_ASUS) {
if (product_id == USB_PRODUCT_ROG_RAIKIRI) {
return SDL_TRUE;
}
}
return SDL_FALSE;
}