diff --git a/README.md b/README.md index 280f4b7..b6231be 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ talking. This differs from a simple loopback via PulseAudio as you won't have an | ROCCAT Elo 7.1 Air | | | | x | x | | | | | | | | | | | | ROCCAT Elo 7.1 USB | | | | x | | | | | | | | | | | | | SteelSeries Arctis Nova 3 | x | | | | | | | | x | x | x | x | | | | -| SteelSeries Arctis Nova 5 | x | x | | | x | | | | x | x | x | x | x | | | +| SteelSeries Arctis Nova (5/5X) | x | x | | | x | x | | | x | x | x | x | x | | | | SteelSeries Arctis Nova 7 | x | x | | | x | x | | | x | x | x | x | x | x | x | | SteelSeries Arctis 7+ | x | x | | | x | x | | | x | x | | | | | | | SteelSeries Arctis Nova Pro Wireless | x | x | | x | x | | | | x | x | | | | | | diff --git a/src/devices/steelseries_arctis_nova_5.c b/src/devices/steelseries_arctis_nova_5.c index 49525c9..ad5a804 100644 --- a/src/devices/steelseries_arctis_nova_5.c +++ b/src/devices/steelseries_arctis_nova_5.c @@ -60,7 +60,7 @@ void arctis_nova_5_init(struct device** device) device_arctis.idProductsSupported = PRODUCT_IDS; device_arctis.numIdProducts = sizeof(PRODUCT_IDS) / sizeof(PRODUCT_IDS[0]); - strncpy(device_arctis.device_name, "SteelSeries Arctis Nova 5", sizeof(device_arctis.device_name)); + strncpy(device_arctis.device_name, "SteelSeries Arctis Nova (5/5X)", sizeof(device_arctis.device_name)); device_arctis.capabilities = B(CAP_SIDETONE) | B(CAP_BATTERY_STATUS) | B(CAP_CHATMIX_STATUS) | B(CAP_MICROPHONE_MUTE_LED_BRIGHTNESS) | B(CAP_MICROPHONE_VOLUME) | B(CAP_INACTIVE_TIME) | B(CAP_VOLUME_LIMITER) | B(CAP_EQUALIZER_PRESET) | B(CAP_EQUALIZER); device_arctis.capability_details[CAP_SIDETONE] = (struct capability_detail) { .usagepage = 0xffc0, .usageid = 0x1, .interface = 3 };