Browse Source

Fix sendstring call in onekey ADC keymap (#10031)

Ryan 6 years ago
parent
commit
48bd8263a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      keyboards/handwired/onekey/keymaps/adc/keymap.c

+ 1 - 1
keyboards/handwired/onekey/keymaps/adc/keymap.c

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