Remove unnecessary implementations of SetCustomMode

This commit is contained in:
Adam Honse
2025-07-31 17:35:20 -05:00
parent 43b97bca75
commit 6a472437bb
48 changed files with 33 additions and 231 deletions

View File

@@ -249,18 +249,6 @@ void RGBController_CMMMController::UpdateSingleLED(int /*led*/)
DeviceUpdateLEDs();
}
void RGBController_CMMMController::SetCustomMode()
{
for(int mode_index = 0; mode_index < (int)modes.size(); mode_index++)
{
if(modes[mode_index].value == CM_MM_MODE_CUSTOM)
{
active_mode = mode_index;
break;
}
}
}
void RGBController_CMMMController::DeviceUpdateMode()
{
RGBColor mode_one = 0;

View File

@@ -33,9 +33,9 @@ public:
void UpdateZoneLEDs(int zone);
void UpdateSingleLED(int led);
void SetCustomMode();
void DeviceUpdateMode();
void DeviceSaveMode();
private:
void Init_Controller();
int GetDeviceMode();