Skip to content

Commit

Permalink
apply changed args
Browse files Browse the repository at this point in the history
  • Loading branch information
jpskenn committed Oct 30, 2023
1 parent afa9e90 commit f4ec3d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion keyboards/sandy/dn0030/keymaps/jpskenn/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ void dynamic_macro_play_user(int8_t direction) {

#ifdef RGBLIGHT_LAYER_BLINK // RGB Lighting & RGB Layer Blink
// Blink indicator when start / stop recorging.
void dynamic_macro_record_start_user(void) {
void dynamic_macro_record_start_user(int8_t direction) {
rgblight_blink_layer_repeat(9, 250, 3);//TODO マクロ記録中、ずっとブリンクならんの?
}

Expand Down
4 changes: 2 additions & 2 deletions keyboards/sandy/v01/keymaps/jpskenn/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ void dynamic_macro_play_user(int8_t direction) {

#ifdef RGBLIGHT_LAYER_BLINK // RGB Lighting & RGB Layer Blink
// Blink indicator when start / stop recorging.
void dynamic_macro_record_start_user(void) {
void dynamic_macro_record_start_user(int8_t direction) {
rgblight_blink_layer_repeat(8, 250, 3);//TODO マクロ記録中、ずっとブリンクならんの?
}

Expand Down Expand Up @@ -617,7 +617,7 @@ layer_state_t default_layer_state_set_user(layer_state_t state) {
}

bool led_update_user(led_t led_state) {
rgblight_set_layer_state(3, IS_HOST_LED_ON(USB_LED_CAPS_LOCK));
rgblight_set_layer_state(3, host_keyboard_led_state().caps_lock);

return true;
}
Expand Down

0 comments on commit f4ec3d9

Please sign in to comment.