diff options
author | Kyle McAlpine <kyle@kjm.bio> | 2021-03-17 02:49:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 19:49:48 -0700 |
commit | 3c4972a53f9c68b0838ffb1cdd5bb31d06a1b4a2 (patch) | |
tree | 63d60fe00d89930120eb368211627c8cd9122824 /keyboards | |
parent | 6af387ec6f5228e9d268dc925cef5bddbd02a3ee (diff) | |
download | qmk_firmware-3c4972a53f9c68b0838ffb1cdd5bb31d06a1b4a2.tar.gz qmk_firmware-3c4972a53f9c68b0838ffb1cdd5bb31d06a1b4a2.zip |
[Keyboard] Fix issue with process_record_kb in Torn (#12189)
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/torn/bongocat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/torn/bongocat.c b/keyboards/torn/bongocat.c index 2280143a7d..593cd5d4ae 100644 --- a/keyboards/torn/bongocat.c +++ b/keyboards/torn/bongocat.c @@ -373,7 +373,7 @@ void oled_task_user(void) { bool process_record_kb(uint16_t keycode, keyrecord_t *record) { sleep_timer = timer_read32(); - return true; + return process_record_user(keycode, record); } #endif |