Fix sendstring call in onekey ADC keymap (#10031)

master
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
1 changed files with 1 additions and 1 deletions

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;