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/konstantin | |
| parent | f2543c3b9b63433f8f5f7aec9531f7ebddcce4fa (diff) | |
| download | qmk_firmware-012c5ef9bdccc8d752481c3c1d35a0ef47b075c2.tar.gz qmk_firmware-012c5ef9bdccc8d752481c3c1d35a0ef47b075c2.zip | |
Update custom SEND_STRING
Diffstat (limited to 'users/konstantin')
| -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 48bd26cd5..989854c2e 100644 --- a/users/konstantin/konstantin.h +++ b/users/konstantin/konstantin.h | |||
| @@ -35,11 +35,11 @@ | |||
| 35 | 35 | ||
| 36 | #ifdef SEND_STRING_CLEAN | 36 | #ifdef SEND_STRING_CLEAN |
| 37 | #undef SEND_STRING | 37 | #undef SEND_STRING |
| 38 | #define SEND_STRING(...) { \ | 38 | #define SEND_STRING(string) { \ |
| 39 | uint8_t ss_mods = get_mods(); \ | 39 | uint8_t ss_mods = get_mods(); \ |
| 40 | clear_mods(); \ | 40 | clear_mods(); \ |
| 41 | send_string_P(PSTR(__VA_ARGS__)); \ | 41 | send_string_P(PSTR(string)); \ |
| 42 | set_mods(ss_mods); \ | 42 | set_mods(ss_mods); \ |
| 43 | } | 43 | } |
| 44 | #endif | 44 | #endif |
| 45 | 45 | ||
