aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dztech
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-07-15 03:50:09 +1000
committerGitHub <noreply@github.com>2021-07-15 03:50:09 +1000
commit99f637e82c0af1ed61ad24163b83799251f05f79 (patch)
tree7f47dad35b84057fd9991f03994fb8ab055d97a2 /keyboards/dztech
parentffdfe3798bc7bd374991abe8f10494f2e73aedd5 (diff)
downloadqmk_firmware-99f637e82c0af1ed61ad24163b83799251f05f79.tar.gz
qmk_firmware-99f637e82c0af1ed61ad24163b83799251f05f79.zip
Fix some RGB Matrix-enabled keymaps referring to RGBLight mode (#13509)
Diffstat (limited to 'keyboards/dztech')
-rw-r--r--keyboards/dztech/dz60rgb/keymaps/piv3rt/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/dztech/dz60rgb/keymaps/piv3rt/keymap.c b/keyboards/dztech/dz60rgb/keymaps/piv3rt/keymap.c
index b4b77b392..38c595937 100644
--- a/keyboards/dztech/dz60rgb/keymaps/piv3rt/keymap.c
+++ b/keyboards/dztech/dz60rgb/keymaps/piv3rt/keymap.c
@@ -93,8 +93,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
93 93
94void reset_leds(void) { 94void reset_leds(void) {
95 current_profile = OFF; 95 current_profile = OFF;
96 rgblight_enable(); 96 rgb_matrix_enable();
97 rgblight_mode(RGBLIGHT_MODE_STATIC_LIGHT); 97 rgb_matrix_mode(RGB_MATRIX_SOLID_COLOR);
98 rgb_matrix_sethsv(0x6a, 0x33, 0xff); 98 rgb_matrix_sethsv(0x6a, 0x33, 0xff);
99} 99}
100 100