Remove SetCustomMode from all controllers beginning with the letter K

This commit is contained in:
Adam Honse 2022-08-14 13:08:43 -05:00
parent 10f9bf4441
commit b6b59db12f
2 changed files with 2 additions and 6 deletions

View file

@ -670,11 +670,6 @@ void RGBController_KeychronKeyboard::UpdateSingleLED(int led)
UpdateZoneLEDs(led);
}
void RGBController_KeychronKeyboard::SetCustomMode()
{
active_mode = 0;
}
void RGBController_KeychronKeyboard::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:
KeychronKeyboardController* controller;