1
0
Fork 0

Fix sendstring call in onekey ADC keymap (#10031)

This commit is contained in:
Ryan 2020-08-17 08:10:48 +10:00 committed by GitHub
parent 249eab34e1
commit 48bd8263a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
#ifdef CONSOLE_ENABLE
printf(buffer);
#else
SEND_STRING(buffer);
send_string(buffer);
#endif
}
break;