aboutsummaryrefslogtreecommitdiff
path: root/users/konstantin
diff options
context:
space:
mode:
authorKonstantin Đorđević <vomindoraan@gmail.com>2019-01-31 16:02:24 +0100
committerKonstantin Đorđević <vomindoraan@gmail.com>2019-03-02 15:15:53 +0100
commit012c5ef9bdccc8d752481c3c1d35a0ef47b075c2 (patch)
treeaf269161a12f02c64cc7c6d591694ecd1b18127c /users/konstantin
parentf2543c3b9b63433f8f5f7aec9531f7ebddcce4fa (diff)
downloadqmk_firmware-012c5ef9bdccc8d752481c3c1d35a0ef47b075c2.tar.gz
qmk_firmware-012c5ef9bdccc8d752481c3c1d35a0ef47b075c2.zip
Update custom SEND_STRING
Diffstat (limited to 'users/konstantin')
-rw-r--r--users/konstantin/konstantin.h10
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