~ruther/qmk_firmware

eab41f7b389d66906e0c3a83837f65b80de9235b — kamisamamizu 7 years ago cca3dcc
Added default case to process_record_user

I tried using process_record_user and if I had to add the default case for it to compile.
1 files changed, 2 insertions(+), 0 deletions(-)

M docs/custom_quantum_functions.md
M docs/custom_quantum_functions.md => docs/custom_quantum_functions.md +2 -0
@@ 60,6 60,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
        PLAY_NOTE_ARRAY(tone_qwerty);
      }
      return true; // Let QMK send the enter press/release events
    default:
      return true; // Process all other keycodes normally
  }
}
```