diff options
author | Drashna Jaelre <drashna@live.com> | 2021-05-21 23:17:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 23:17:32 -0700 |
commit | a0fed0ea176d1c986e40fc4981b900509c90d66e (patch) | |
tree | ee12f5943046015ea0dce8e2a30a68bc8eb99dbe /keyboards/dumbpad/v1x_dualencoder/templates/keymap.c | |
parent | 76c23b15abc824f867b48d8d5100dced2417d336 (diff) | |
download | qmk_firmware-a0fed0ea176d1c986e40fc4981b900509c90d66e.tar.gz qmk_firmware-a0fed0ea176d1c986e40fc4981b900509c90d66e.zip |
Convert Encoder callbacks to be boolean functions (#12805)
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/dumbpad/v1x_dualencoder/templates/keymap.c')
-rw-r--r-- | keyboards/dumbpad/v1x_dualencoder/templates/keymap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/dumbpad/v1x_dualencoder/templates/keymap.c b/keyboards/dumbpad/v1x_dualencoder/templates/keymap.c index 0c2be0aad..c602269ed 100644 --- a/keyboards/dumbpad/v1x_dualencoder/templates/keymap.c +++ b/keyboards/dumbpad/v1x_dualencoder/templates/keymap.c | |||
@@ -2,7 +2,7 @@ | |||
2 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {__KEYMAP_GOES_HERE__}; | 2 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {__KEYMAP_GOES_HERE__}; |
3 | 3 | ||
4 | 4 | ||
5 | void encoder_update_user(uint8_t index, bool clockwise) { | 5 | bool encoder_update_user(uint8_t index, bool clockwise) { |
6 | if (index == 0) { | 6 | if (index == 0) { |
7 | switch (get_highest_layer(layer_state)) { | 7 | switch (get_highest_layer(layer_state)) { |
8 | case 0: | 8 | case 0: |
@@ -40,4 +40,5 @@ void encoder_update_user(uint8_t index, bool clockwise) { | |||
40 | break; | 40 | break; |
41 | } | 41 | } |
42 | } | 42 | } |
43 | return true; | ||
43 | } | 44 | } |