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/nightly_boards/octopad/octopad.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/nightly_boards/octopad/octopad.c')
-rw-r--r-- | keyboards/nightly_boards/octopad/octopad.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/keyboards/nightly_boards/octopad/octopad.c b/keyboards/nightly_boards/octopad/octopad.c index 9dd9b72a1..e05782677 100644 --- a/keyboards/nightly_boards/octopad/octopad.c +++ b/keyboards/nightly_boards/octopad/octopad.c | |||
@@ -21,7 +21,8 @@ void matrix_scan_kb(void) { | |||
21 | matrix_scan_user(); | 21 | matrix_scan_user(); |
22 | } | 22 | } |
23 | 23 | ||
24 | void encoder_update_kb(uint8_t index, bool clockwise) { | 24 | bool encoder_update_kb(uint8_t index, bool clockwise) { |
25 | // if (!encoder_update_user(index, clockwise)) return false; | ||
25 | encoder_action_register(index, clockwise); | 26 | encoder_action_register(index, clockwise); |
26 | // encoder_update_user(index, clockwise); | 27 | return true; |
27 | }; \ No newline at end of file | 28 | }; |