aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dztech/dz60rgb/keymaps/iso/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dztech/dz60rgb/keymaps/iso/keymap.c')
-rw-r--r--keyboards/dztech/dz60rgb/keymaps/iso/keymap.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/keyboards/dztech/dz60rgb/keymaps/iso/keymap.c b/keyboards/dztech/dz60rgb/keymaps/iso/keymap.c
index a78e23703..5e3884803 100644
--- a/keyboards/dztech/dz60rgb/keymaps/iso/keymap.c
+++ b/keyboards/dztech/dz60rgb/keymaps/iso/keymap.c
@@ -42,10 +42,8 @@ void rgb_matrix_layer_helper (uint8_t red, uint8_t green, uint8_t blue, bool def
42 rgb_led led; 42 rgb_led led;
43 for (int i = 0; i < DRIVER_LED_TOTAL; i++) { 43 for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
44 led = g_rgb_leds[i]; 44 led = g_rgb_leds[i];
45 if (led.matrix_co.raw < 0xFF) { 45 if (HAS_FLAGS(led.flags, LED_FLAG_MODIFIER)) {
46 if (led.modifier) { 46 rgb_matrix_set_color( i, red, green, blue );
47 rgb_matrix_set_color( i, red, green, blue );
48 }
49 } 47 }
50 } 48 }
51} 49}