forked from mirrors/qmk_firmware
remove uneeded returns floating around
This commit is contained in:
parent
3cfa24c684
commit
ca19cd8bb8
1 changed files with 0 additions and 2 deletions
|
@ -77,7 +77,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), 10);
|
send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), 10);
|
||||||
set_mods(mods);
|
set_mods(mods);
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
break;
|
break;
|
||||||
case KC_RDP: //Opens Windows RDP
|
case KC_RDP: //Opens Windows RDP
|
||||||
if (!record->event.pressed) {
|
if (!record->event.pressed) {
|
||||||
|
@ -88,7 +87,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
send_string_with_delay_P(PSTR("mstsc"), 10);
|
send_string_with_delay_P(PSTR("mstsc"), 10);
|
||||||
send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), 10);
|
send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), 10);
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return process_record_keymap(keycode, record);
|
return process_record_keymap(keycode, record);
|
||||||
|
|
Loading…
Reference in a new issue