Browse Source

nullbitsco/snap: fix broken keymaps (#21877)

pull/21902/head
Jay Greco 8 months ago
committed by GitHub
parent
commit
81ea4f9110
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      keyboards/nullbitsco/snap/keymaps/bongo_reactive/keymap.c
  2. +1
    -1
      keyboards/nullbitsco/snap/keymaps/oled/keymap.c
  3. +1
    -1
      keyboards/nullbitsco/snap/keymaps/typehud/keymap.c

+ 1
- 1
keyboards/nullbitsco/snap/keymaps/bongo_reactive/keymap.c View File

@ -92,7 +92,7 @@ static void render_status(void) {
// Only update if the LED state has changed
// Otherwise, the OLED will not turn off if an LED is on.
if (persistent_led_state != led_state) {
if (persistent_led_state.raw != led_state.raw) {
persistent_led_state = led_state;
oled_write_ln_P(PSTR(""), false);


+ 1
- 1
keyboards/nullbitsco/snap/keymaps/oled/keymap.c View File

@ -119,7 +119,7 @@ static void render_status(void) {
// Only update if the LED state has changed
// Otherwise, the OLED will not turn off if an LED is on.
if (persistent_led_state != led_state) {
if (persistent_led_state.raw != led_state.raw) {
persistent_led_state = led_state;
oled_write_ln_P(PSTR(""), false);


+ 1
- 1
keyboards/nullbitsco/snap/keymaps/typehud/keymap.c View File

@ -99,7 +99,7 @@ static void render_status(void) {
// Only update if the LED state has changed
// Otherwise, the OLED will not turn off if an LED is on.
if (persistent_led_state != led_state) {
if (persistent_led_state.raw != led_state.raw) {
persistent_led_state = led_state;
oled_write_ln_P(PSTR(" "), false);


Loading…
Cancel
Save