diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-01-31 16:02:24 +0100 |
---|---|---|
committer | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-03-02 15:15:53 +0100 |
commit | 012c5ef9bdccc8d752481c3c1d35a0ef47b075c2 (patch) | |
tree | af269161a12f02c64cc7c6d591694ecd1b18127c /users | |
parent | f2543c3b9b63433f8f5f7aec9531f7ebddcce4fa (diff) | |
download | qmk_firmware-012c5ef9bdccc8d752481c3c1d35a0ef47b075c2.tar.gz qmk_firmware-012c5ef9bdccc8d752481c3c1d35a0ef47b075c2.zip |
Update custom SEND_STRING
Diffstat (limited to 'users')
-rw-r--r-- | users/konstantin/konstantin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/users/konstantin/konstantin.h b/users/konstantin/konstantin.h index 48bd26cd59..989854c2e6 100644 --- a/users/konstantin/konstantin.h +++ b/users/konstantin/konstantin.h @@ -35,11 +35,11 @@ #ifdef SEND_STRING_CLEAN #undef SEND_STRING - #define SEND_STRING(...) { \ - uint8_t ss_mods = get_mods(); \ - clear_mods(); \ - send_string_P(PSTR(__VA_ARGS__)); \ - set_mods(ss_mods); \ + #define SEND_STRING(string) { \ + uint8_t ss_mods = get_mods(); \ + clear_mods(); \ + send_string_P(PSTR(string)); \ + set_mods(ss_mods); \ } #endif |