Files
cheapino_qmk_firmware/keyboards/crkbd/crkbd.c
skullY c4aa18363e wip
2020-02-29 21:34:46 -08:00

15 lines
436 B
C

#include "crkbd.h"
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
/* FIXME(skullydazed):
* Originally this code always ran no matter what process_record_user() did.
* With this PR it will only run if process_record_user() returns true. We
* should think through the implications here.
*/
#ifdef SSD1306OLED
return process_record_gfx(keycode,record);
#else
return true;
#endif
}