summaryrefslogtreecommitdiff
path: root/quantum/dynamic_keymap.c
diff options
context:
space:
mode:
authorWilba6582 <Jason.S.Williams@gmail.com>2019-03-30 14:24:13 +1100
committerDrashna Jaelre <drashna@live.com>2019-04-09 09:49:25 -0700
commita98777199ed55ce1371181639d4c06fbbcd75700 (patch)
tree9f8a26f2ede5b3d405dd3092a48c0d4869b2093b /quantum/dynamic_keymap.c
parent7661468719be1013c40beaf27e6f6876b5c5d8cb (diff)
Added SS_TAP_CODE, SS_DOWN_CODE, SS_UP_CODE
Diffstat (limited to 'quantum/dynamic_keymap.c')
-rw-r--r--quantum/dynamic_keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/dynamic_keymap.c b/quantum/dynamic_keymap.c
index 53c18a7510..38400e36f1 100644
--- a/quantum/dynamic_keymap.c
+++ b/quantum/dynamic_keymap.c
@@ -224,7 +224,7 @@ void dynamic_keymap_macro_send( uint8_t id )
}
// If the char is magic (tap, down, up),
// add the next char (key to use) and send a 2 char string.
- if ( data[0] == 1 || data[0] == 2 || data[0] == 3 ) {
+ if ( data[0] == SS_TAP_CODE || data[0] == SS_DOWN_CODE || data[0] == SS_UP_CODE ) {
data[1] = eeprom_read_byte(p++);
if ( data[1] == 0 ) {
break;