summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--keyboards/bigswitch/bigswitch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/bigswitch/bigswitch.c b/keyboards/bigswitch/bigswitch.c
index 3cc11e602..dfd9710e2 100644
--- a/keyboards/bigswitch/bigswitch.c
+++ b/keyboards/bigswitch/bigswitch.c
@@ -26,8 +26,8 @@ void matrix_init_user(void) {
void matrix_scan_user(void) {
if (runonce && timer_elapsed(my_timer) > 1000) {
runonce = false;
- rgblight_sethsv(0x0, 0xff, 0x80);
- rgblight_mode(9);
- rgblight_enable();
+ rgblight_sethsv_noeeprom(0x0, 0xff, 0x80);
+ rgblight_mode_noeeprom(9);
+ rgblight_enable_noeeprom();
}
}