diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-06-27 14:21:42 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-06-27 14:21:42 -0400 |
commit | 9f5b4e1d7a37f873acbc19b8385964121566653e (patch) | |
tree | 78a51918d16a84148af5276170d2c30525dee661 /quantum/quantum.c | |
parent | b82604dadad81872abdb9fdde18086ee69e66671 (diff) | |
parent | 4ba9438c3f71e6ea3433be4f9e1a28d36471d247 (diff) | |
download | qmk_firmware-9f5b4e1d7a37f873acbc19b8385964121566653e.tar.gz |
Merge branch 'master' of https://github.com/qmk/qmk_firmware into dual_audio
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 3b5e52ff1..5bb7b04d5 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -530,7 +530,7 @@ void send_string(const char *str) { shift = false; } else { - int hi = ascii_code>>4 & 0x0f; + int hi = ascii_code>>4 & 0x0f, lo = ascii_code & 0x0f; keycode = pgm_read_byte(&ascii_to_keycode_lut[hi][lo]); shift = !!( pgm_read_word(&ascii_to_shift_lut[hi]) & (0x8000u>>lo) ); |