]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix bug.
authorrai-suta <sn0425.flv+github@gmail.com>
Sun, 25 Jun 2017 15:24:32 +0000 (00:24 +0900)
committerrai-suta <sn0425.flv+github@gmail.com>
Sun, 25 Jun 2017 15:24:32 +0000 (00:24 +0900)
quantum/quantum.c

index 3b5e52ff12579d826b3413b5f28b54bfaaf60b4e..5bb7b04d53159c459e2c218cfdcafb80827f8734 100644 (file)
@@ -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) );