Remove SetCustomMode from all controllers beginning with the letter L

This commit is contained in:
Adam Honse 2022-08-14 13:24:38 -05:00
parent b6b59db12f
commit 6f1e76c8b1
42 changed files with 8 additions and 150 deletions

View file

@ -90,11 +90,6 @@ void RGBController_LexipMouse::UpdateSingleLED(int led)
UpdateZoneLEDs(led);
}
void RGBController_LexipMouse::SetCustomMode()
{
active_mode = 0;
}
void RGBController_LexipMouse::DeviceUpdateMode()
{
UpdateZoneLEDs(0);

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:
LexipMouseController* controller;