]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
remove uneeded returns floating around
authorstanrc85 <47038504+stanrc85@users.noreply.github.com>
Wed, 3 Apr 2019 00:33:17 +0000 (20:33 -0400)
committerstanrc85 <47038504+stanrc85@users.noreply.github.com>
Wed, 3 Apr 2019 00:33:17 +0000 (20:33 -0400)
users/stanrc85/stanrc85.c

index 4a46d61daacb69763a6c70170b0034d4f8801c4c..78b0c4a1496e2fbe252e016748031305ef1d2e61 100644 (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);