Fix functions with empty params (#19647)
* Fix functions with empty params * Found a bunch more
This commit is contained in:
@@ -73,14 +73,14 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
|
||||
|
||||
static void set_rgb_side_leds(void);
|
||||
|
||||
static void set_rgb_side_leds() {
|
||||
static void set_rgb_side_leds(void) {
|
||||
rgb_matrix_set_color(67, RGB_WHITE); // Left side LED 1
|
||||
rgb_matrix_set_color(68, RGB_WHITE); // Right side LED 1
|
||||
rgb_matrix_set_color(91, RGB_WHITE); // Left side LED 8
|
||||
rgb_matrix_set_color(92, RGB_WHITE); // Right side LED 8
|
||||
}
|
||||
|
||||
bool rgb_matrix_indicators_user() {
|
||||
bool rgb_matrix_indicators_user(void) {
|
||||
rgb_matrix_set_color_all(0x0, 0x0, 0x0);
|
||||
if (IS_HOST_LED_ON(USB_LED_CAPS_LOCK)) {
|
||||
rgb_matrix_set_color(3, RGB_WHITE); // CAPS
|
||||
|
Reference in New Issue
Block a user