Clean up Creative Sound Blaster controllers

This commit is contained in:
Adam Honse committed 2026-08-16 18:41:23 -05:00
1 parent 8e4859688d
commit bc54e18e48
11 files changed
+10 -13

No files matched your search

@@ -16,13 +16,10 @@ DetectedControllers DetectCreativeAE5Device()
{
DetectedControllers detected_controllers;
LOG_INFO("[Creative SoundBlaster AE-5] Windows detection function called");
CreativeSoundBlasterAE5Controller_Windows* controller = new CreativeSoundBlasterAE5Controller_Windows();
if(controller->Initialize())
{
LOG_INFO("[Creative SoundBlaster AE-5] Device initialized successfully, registering controller");
RGBController_CreativeSoundBlasterAE5* rgb_controller = new RGBController_CreativeSoundBlasterAE5(controller);
detected_controllers.push_back(rgb_controller);
@@ -1,7 +1,7 @@
/*---------------------------------------------------------*\
| CreativeControllerDetect.cpp |
| CreativeSoundBlasterXG6ControllerDetect.cpp |
| |
| Detector for Creative devices |
| Detector for Creative Sound Blaster XG6 devices |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-or-later |
@@ -15,14 +15,14 @@
/*---------------------------------------------------------*\
| Creative vendor ID |
\*---------------------------------------------------------*/
#define CREATIVE_VID 0x041E
#define CREATIVE_VID 0x041E
/*---------------------------------------------------------*\
| SoundCards |
| Creative Sound Blaster XG6 product ID |
\*---------------------------------------------------------*/
#define CREATIVE_SOUNDBLASTERX_G6_PID 0x3256
#define CREATIVE_SOUNDBLASTERX_G6_PID 0x3256
DetectedControllers DetectCreativeDevice(hid_device_info* info, const std::string& name)
DetectedControllers DetectCreativeSoundBlasterXG6Device(hid_device_info* info, const std::string& name)
{
DetectedControllers detected_controllers;
hid_device* dev;
@@ -40,7 +40,7 @@ DetectedControllers DetectCreativeDevice(hid_device_info* info, const std::strin
return(detected_controllers);
}
/*-------------------------------------------------------------------------------------------------------------------------------------------------*\
| Sound Cards |
\*-------------------------------------------------------------------------------------------------------------------------------------------------*/
REGISTER_HID_DETECTOR_I("Creative SoundBlasterX G6", DetectCreativeDevice, CREATIVE_VID, CREATIVE_SOUNDBLASTERX_G6_PID, 4);
/*---------------------------------------------------------*\
| Sound Cards |
\*---------------------------------------------------------*/
REGISTER_HID_DETECTOR_I("Creative SoundBlasterX G6", DetectCreativeSoundBlasterXG6Device, CREATIVE_VID, CREATIVE_SOUNDBLASTERX_G6_PID, 4);