remove uneeded returns floating around

master
stanrc85 2019-04-02 20:33:17 -04:00
parent 3cfa24c684
commit ca19cd8bb8
1 changed files with 0 additions and 2 deletions

View File

@ -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);
set_mods(mods);
}
return false;
break;
case KC_RDP: //Opens Windows RDP
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(SS_TAP(X_ENTER)), 10);
}
return false;
break;
}
return process_record_keymap(keycode, record);