소스 검색

add dz60rgb-ansi layout to configurator (#5938)

* add dz60rgb-ansi layout to configurator

* fix mekanist's dz60rgb keymap
Anthony Leung 6 년 전
부모
커밋
0aece4ddab
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 0
      keyboards/dztech/dz60rgb/info.json
  2. 3 3
      keyboards/dztech/dz60rgb/keymaps/mekanist/keymap.c

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 1 - 0
keyboards/dztech/dz60rgb/info.json


+ 3 - 3
keyboards/dztech/dz60rgb/keymaps/mekanist/keymap.c

@@ -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;
 		}
 	}
 

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.