diff options
author | Drashna Jaelre <drashna@live.com> | 2021-07-01 08:22:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-01 08:22:21 -0700 |
commit | 0bde920817ef458f2ad61a66ce76a2535bbc261b (patch) | |
tree | 9c7078bd67547fc44085cec1fbfbc82a47047161 /keyboards/preonic/rev3/rev3.c | |
parent | 8f78be076debfc073741f1bc1ba424f1271191d9 (diff) |
Convert Dip Switch callbacks to boolean functions (#13399)
Diffstat (limited to 'keyboards/preonic/rev3/rev3.c')
-rw-r--r-- | keyboards/preonic/rev3/rev3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/preonic/rev3/rev3.c b/keyboards/preonic/rev3/rev3.c index ec8a56108e..0410d9a298 100644 --- a/keyboards/preonic/rev3/rev3.c +++ b/keyboards/preonic/rev3/rev3.c @@ -53,11 +53,11 @@ void matrix_scan_kb(void) { #ifdef DIP_SWITCH_ENABLE __attribute__((weak)) -void dip_update(uint8_t index, bool active) {} +bool dip_update(uint8_t index, bool active) { return true;} __attribute__((weak)) -void dip_switch_update_user(uint8_t index, bool active) { - dip_update(index, active); +bool dip_switch_update_user(uint8_t index, bool active) { + return dip_update(index, active); } #endif |