diff options
author | dbroqua <dbroqua@mousur.org> | 2016-12-22 08:26:55 +0100 |
---|---|---|
committer | dbroqua <dbroqua@mousur.org> | 2016-12-22 08:26:55 +0100 |
commit | 46ff5f3b9007e9fd4714ed7e34c7a8b77cf052ae (patch) | |
tree | b8d0db2792dbf291e6ed33788abafa38aac34cb8 /keyboards/gh60 | |
parent | 5ee136a36f6fd8cb697f97baf0d72192615b857d (diff) | |
download | qmk_firmware-46ff5f3b9007e9fd4714ed7e34c7a8b77cf052ae.tar.gz qmk_firmware-46ff5f3b9007e9fd4714ed7e34c7a8b77cf052ae.zip |
- Fixed bad typo in dbroqua layout for gh60
- Removed unused function in dbroqua layout for gh60
Diffstat (limited to 'keyboards/gh60')
-rw-r--r-- | keyboards/gh60/keymaps/dbroqua/keymap.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/keyboards/gh60/keymaps/dbroqua/keymap.c b/keyboards/gh60/keymaps/dbroqua/keymap.c index 0c2e980d2f..3c16baa226 100644 --- a/keyboards/gh60/keymaps/dbroqua/keymap.c +++ b/keyboards/gh60/keymaps/dbroqua/keymap.c @@ -57,7 +57,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ______, ______, ______, KC_FN1, KC_MSTP, ______, ______, ______ \ ), -/* FN Layer +/* WASD Layer * ,-----------------------------------------------------------------------------------------. * | | | | | | | | | | | | | | | | * |-----------------------------------------------------------------------------------------+ @@ -70,7 +70,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * | | | | | | * `-----------------------------------------------------------------' */ - [_WASD] = KEYMAP_HHKB( /* Layer 1 */ + [_WASD] = KEYMAP_HHKB( /* Layer 2 */ ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \ ______, ______, KC_UP, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, ______, \ ______, KC_LEFT, KC_DOWN, KC_RGHT, ______, ______, ______, ______, ______, ______, ______, ______, ______, \ @@ -90,23 +90,6 @@ const uint16_t PROGMEM fn_actions[] = { [1] = ACTION_LAYER_TOGGLE(2), // toggle wasd overlay }; -//bool process_record_user(uint16_t keycode, keyrecord_t *record) { -// switch (keycode) { -// case ESC_LED: -// if (record->event.pressed) { -// if (esc_led_on == true ){ -// gh60_esc_led_off(); -// }else{ -// gh60_esc_led_on(); -// } -// esc_led_on = !esc_led_on; -// } -// return false; -// break; -// } -// return true; -//} - void matrix_scan_user(void) { uint32_t layer = layer_state; |