diff options
author | Drashna Jaelre <drashna@live.com> | 2020-09-25 12:34:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 05:34:38 +1000 |
commit | 9570b1bbb4ce2358efedf4a25233ee2c15b8745b (patch) | |
tree | 9553378c90cfcf766e6b4cfc6ef5d7c9bfd00a42 /quantum/keymap_extras/sendstring_belgian.h | |
parent | 4511201d809fca8777bff9f7bcbc89e260fd73b4 (diff) | |
download | qmk_firmware-9570b1bbb4ce2358efedf4a25233ee2c15b8745b.tar.gz qmk_firmware-9570b1bbb4ce2358efedf4a25233ee2c15b8745b.zip |
Fix Belgian sendstring file (#10443)
Specifically, the `BE_CIRC` is an alt-ed keycode, which means it
doesn't fit into the 8 bit keycode range... It should be `BE_SECT`,
as it is already alt-ed by the alt lut.
Confirmed that this change fixes compilation warnings and works
correctly, on reddit.
https://www.reddit.com/r/olkb/comments/iywin1/unsigned_conversion_from_int_to_unsigned_char/g6jvfgl/
Diffstat (limited to 'quantum/keymap_extras/sendstring_belgian.h')
-rw-r--r-- | quantum/keymap_extras/sendstring_belgian.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/keymap_extras/sendstring_belgian.h b/quantum/keymap_extras/sendstring_belgian.h index 5e9a079a95..c537a361be 100644 --- a/quantum/keymap_extras/sendstring_belgian.h +++ b/quantum/keymap_extras/sendstring_belgian.h @@ -88,7 +88,7 @@ const uint8_t ascii_to_keycode_lut[128] PROGMEM = { // P Q R S T U V W BE_P, BE_Q, BE_R, BE_S, BE_T, BE_U, BE_V, BE_W, // X Y Z [ \ ] ^ _ - BE_X, BE_Y, BE_Z, BE_CIRC, BE_LABK, BE_DLR, BE_SECT, BE_MINS, + BE_X, BE_Y, BE_Z, BE_SECT, BE_LABK, BE_DLR, BE_SECT, BE_MINS, // ` a b c d e f g BE_MICR, BE_A, BE_B, BE_C, BE_D, BE_E, BE_F, BE_G, // h i j k l m n o |