[Keymap] use lowercase send_string for non-literals (#6193)

This commit is contained in:
Callum Oakley 2019-06-25 18:13:01 +01:00 committed by Drashna Jaelre
parent 2636464b85
commit 8fd3f42281
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
bool send_string_if_keydown(keyrecord_t *record, const char *s) {
if (record->event.pressed) {
SEND_STRING(s);
send_string(s);
}
return true;
}