Browse Source

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

Callum Oakley 6 năm trước cách đây
mục cha
commit
8fd3f42281
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      keyboards/planck/keymaps/callum/keymap.c

+ 1 - 1
keyboards/planck/keymaps/callum/keymap.c

@@ -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;
 }