1
0
Fork 0

[Keyboard] Fix issue with process_record_kb in Torn (#12189)

This commit is contained in:
Kyle McAlpine 2021-03-17 02:49:48 +00:00 committed by GitHub
parent 6af387ec6f
commit 3c4972a53f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -373,7 +373,7 @@ void oled_task_user(void) {
bool process_record_kb(uint16_t keycode, keyrecord_t *record) { bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
sleep_timer = timer_read32(); sleep_timer = timer_read32();
return true; return process_record_user(keycode, record);
} }
#endif #endif