add dz60rgb-ansi layout to configurator (#5938)

* add dz60rgb-ansi layout to configurator

* fix mekanist's dz60rgb keymap
This commit is contained in:
Anthony Leung
2019-05-21 09:03:38 -04:00
committed by MechMerlin
parent d93c53fc62
commit 0aece4ddab
2 changed files with 10 additions and 5 deletions

View File

@@ -64,13 +64,13 @@ void rgb_matrix_indicators_user(void)
if (!g_suspend_state) {
switch (biton32(layer_state)) {
case _LAYER1:
rgb_matrix_layer_helper(0xFF, 0x00, 0x00, false); break;
rgb_matrix_layer_helper(0xFF, 0x00, 0x00); break;
case _LAYER2:
rgb_matrix_layer_helper(0x00, 0xFF, 0x00, false); break;
rgb_matrix_layer_helper(0x00, 0xFF, 0x00); break;
case _LAYER4:
rgb_matrix_layer_helper(0xFF, 0xFF, 0x00, false); break;
rgb_matrix_layer_helper(0xFF, 0xFF, 0x00); break;
}
}