Fix functions with empty params (#19647)
* Fix functions with empty params * Found a bunch more
This commit is contained in:
parent
0f77ae6a20
commit
cf935d97ae
170 changed files with 276 additions and 276 deletions
|
@ -62,7 +62,7 @@ const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
|
|||
static void set_rgb_caps_leds_off(void);
|
||||
static void set_rgb_scroll_leds_off(void);
|
||||
|
||||
static void set_rgb_caps_leds_on() {
|
||||
static void set_rgb_caps_leds_on(void) {
|
||||
// Set alpha and capslock to red
|
||||
|
||||
rgb_matrix_set_color( 3, 255, 0, 0); // Caps
|
||||
|
@ -97,7 +97,7 @@ const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
|
|||
rgb_matrix_set_color(43, 255, 0, 0); // M
|
||||
}
|
||||
|
||||
static void set_rgb_caps_leds_off() {
|
||||
static void set_rgb_caps_leds_off(void) {
|
||||
// Set alpha and capslock to black
|
||||
|
||||
rgb_matrix_set_color( 3, 0, 0, 0); // Caps
|
||||
|
@ -132,11 +132,11 @@ const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
|
|||
rgb_matrix_set_color(43, 0, 0, 0); // M
|
||||
}
|
||||
|
||||
static void set_rgb_scroll_leds_on() {
|
||||
static void set_rgb_scroll_leds_on(void) {
|
||||
rgb_matrix_set_color(72, 255, 255, 255); // Under Rotary (HOME)
|
||||
}
|
||||
|
||||
static void set_rgb_scroll_leds_off() {
|
||||
static void set_rgb_scroll_leds_off(void) {
|
||||
rgb_matrix_set_color(72, 0, 0, 0); // Under Rotary (HOME)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue