diff --git a/Controllers/HyperXKeyboardController/HyperXKeyboardControllerDetect.cpp b/Controllers/HyperXKeyboardController/HyperXKeyboardControllerDetect.cpp index 6fd78b2b7..515470155 100644 --- a/Controllers/HyperXKeyboardController/HyperXKeyboardControllerDetect.cpp +++ b/Controllers/HyperXKeyboardController/HyperXKeyboardControllerDetect.cpp @@ -10,10 +10,11 @@ /*-----------------------------------------------------*\ | HyperX keyboard vendor IDs | \*-----------------------------------------------------*/ -#define HYPERX_KEYBOARD_VID 0x0951 -#define HYPERX_ALLOY_ELITE_PID 0x16BE -#define HYPERX_ALLOY_FPS_RGB_PID 0x16DC -#define HYPERX_ALLOY_ORIGINS_PID 0x16E5 +#define HYPERX_KEYBOARD_VID 0x0951 +#define HYPERX_ALLOY_ELITE_PID 0x16BE +#define HYPERX_ALLOY_FPS_RGB_PID 0x16DC +#define HYPERX_ALLOY_ORIGINS_PID 0x16E5 +#define HYPERX_ALLOY_ORIGINS_CORE_PID 0x16E6 typedef struct { @@ -30,9 +31,10 @@ static const hyperx_device device_list[] = /*-----------------------------------------------------------------------------------------------------*\ | Keyboards | \*-----------------------------------------------------------------------------------------------------*/ - { HYPERX_KEYBOARD_VID, HYPERX_ALLOY_ELITE_PID, 2, "HyperX Alloy Elite RGB" }, - { HYPERX_KEYBOARD_VID, HYPERX_ALLOY_FPS_RGB_PID, 2, "HyperX Alloy FPS RGB" }, - { HYPERX_KEYBOARD_VID, HYPERX_ALLOY_ORIGINS_PID, 3, "HyperX Alloy Origins" }, + { HYPERX_KEYBOARD_VID, HYPERX_ALLOY_ELITE_PID, 2, "HyperX Alloy Elite RGB" }, + { HYPERX_KEYBOARD_VID, HYPERX_ALLOY_FPS_RGB_PID, 2, "HyperX Alloy FPS RGB" }, + { HYPERX_KEYBOARD_VID, HYPERX_ALLOY_ORIGINS_PID, 3, "HyperX Alloy Origins" }, + { HYPERX_KEYBOARD_VID, HYPERX_ALLOY_ORIGINS_CORE_PID, 3, "HyperX Alloy Origins Core" }, }; /******************************************************************************************\