aboutsummaryrefslogtreecommitdiff
path: root/keyboards/swiftrax/retropad/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/swiftrax/retropad/keymaps/default/keymap.c')
-rw-r--r--keyboards/swiftrax/retropad/keymaps/default/keymap.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/keyboards/swiftrax/retropad/keymaps/default/keymap.c b/keyboards/swiftrax/retropad/keymaps/default/keymap.c
index 8b9992e1d..6fd2ff5da 100644
--- a/keyboards/swiftrax/retropad/keymaps/default/keymap.c
+++ b/keyboards/swiftrax/retropad/keymaps/default/keymap.c
@@ -33,11 +33,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
33 KC_END, KC_PGDN), 33 KC_END, KC_PGDN),
34}; 34};
35 35
36void encoder_update_user(uint8_t index, bool clockwise) { 36bool encoder_update_user(uint8_t index, bool clockwise) {
37 if(IS_LAYER_ON(2)){ 37 if(IS_LAYER_ON(2)){
38 if (clockwise) 38 if (clockwise)
39 tap_code(KC_LEFT); 39 tap_code(KC_LEFT);
40 else 40 else
41 tap_code(KC_RGHT); 41 tap_code(KC_RGHT);
42 } 42 }
43 else{ 43 else{
@@ -46,6 +46,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
46 else 46 else
47 tap_code(KC_VOLD); 47 tap_code(KC_VOLD);
48 } 48 }
49 return true;
49} 50}
50 51
51void matrix_init_user(void) { 52void matrix_init_user(void) {
@@ -66,4 +67,4 @@ layer_state_t layer_state_set_user(layer_state_t state) {
66 writePin(D4, !layer_state_cmp(state, 1)); 67 writePin(D4, !layer_state_cmp(state, 1));
67 writePin(D3, !layer_state_cmp(state, 2)); 68 writePin(D3, !layer_state_cmp(state, 2));
68 return state; 69 return state;
69} \ No newline at end of file 70}