Browse Source

Change function return type to bool

Co-authored-by: Drashna Jaelre <drashna@live.com>
pull/13299/head
BifbofII 2 years ago
committed by GitHub
parent
commit
77f77184b8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      keyboards/handwired/ortho_brass/keymaps/default/keymap.c

+ 2
- 1
keyboards/handwired/ortho_brass/keymaps/default/keymap.c View File

@ -215,7 +215,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
}
void dip_switch_update_user(uint8_t index, bool active) {
bool dip_switch_update_user(uint8_t index, bool active) {
switch (index) {
case 0: {
if (active) {
@ -226,6 +226,7 @@ void dip_switch_update_user(uint8_t index, bool active) {
break;
}
}
return true;
}
bool music_mask_user(uint16_t keycode) {


Loading…
Cancel
Save