summaryrefslogtreecommitdiff
path: root/keyboards/torn
diff options
context:
space:
mode:
authorKyle McAlpine <kyle@kjm.bio>2021-03-17 02:49:48 +0000
committerGitHub <noreply@github.com>2021-03-16 19:49:48 -0700
commit3c4972a53f9c68b0838ffb1cdd5bb31d06a1b4a2 (patch)
tree63d60fe00d89930120eb368211627c8cd9122824 /keyboards/torn
parent6af387ec6f5228e9d268dc925cef5bddbd02a3ee (diff)
[Keyboard] Fix issue with process_record_kb in Torn (#12189)
Diffstat (limited to 'keyboards/torn')
-rw-r--r--keyboards/torn/bongocat.c2
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