Remove SetCustomMode from all controllers beginning with the letter M

This commit is contained in:
Adam Honse 2022-08-14 18:49:33 -05:00
parent 69f916c389
commit 9caf7802ed
14 changed files with 18 additions and 86 deletions

View file

@ -382,11 +382,6 @@ void RGBController_MSIOptix::UpdateSingleLED(int led)
UpdateZoneLEDs(led);
}
void RGBController_MSIOptix::SetCustomMode()
{
active_mode = 0;
}
void RGBController_MSIOptix::DeviceUpdateMode()
{
if(modes[active_mode].flags & MODE_FLAG_HAS_PER_LED_COLOR)

View file

@ -20,11 +20,12 @@ public:
void SetupZones();
void ResizeZone(int zone, int new_size);
void DeviceUpdateLEDs();
void UpdateZoneLEDs(int zone);
void UpdateSingleLED(int led);
void DeviceUpdateMode();
void SetCustomMode();
private:
MSIOptixController* controller;