diff options
author | fauxpark <fauxpark@gmail.com> | 2019-12-08 12:59:47 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-08 12:59:47 +1100 |
commit | 730a736ef049832988e1dc28228cd1d692d359f0 (patch) | |
tree | f52db12f1c5b60d13c927687ea221abda81201c2 | |
parent | a8320f20f76782789b274f7a8c3e3ad4278a075c (diff) |
Set proper ASCII character for KC_NUHS in iWRAP code (#7434)
-rw-r--r-- | tmk_core/protocol/iwrap/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/iwrap/main.c b/tmk_core/protocol/iwrap/main.c index 7ba780ede7..6e9b5455b1 100644 --- a/tmk_core/protocol/iwrap/main.c +++ b/tmk_core/protocol/iwrap/main.c @@ -393,7 +393,7 @@ static uint8_t key2asc(uint8_t key) { case KC_BSLASH: return '\\'; case KC_NONUS_HASH: - return '\\'; + return '#'; case KC_SCOLON: return ';'; case KC_QUOTE: |