mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-22 19:40:29 +08:00
Fixes unicode_map declaration example (#19450)
If the previous example was used the incorrect codepoints are produced. Changes the order of arguments the declaration of the unicode_map
This commit is contained in:
parent
590c889537
commit
943aae85d5
|
@ -51,7 +51,7 @@ enum unicode_names {
|
||||||
SNEK
|
SNEK
|
||||||
};
|
};
|
||||||
|
|
||||||
const uint32_t PROGMEM unicode_map[] = {
|
const uint32_t unicode_map[] PROGMEM = {
|
||||||
[BANG] = 0x203D, // ‽
|
[BANG] = 0x203D, // ‽
|
||||||
[IRONY] = 0x2E2E, // ⸮
|
[IRONY] = 0x2E2E, // ⸮
|
||||||
[SNEK] = 0x1F40D, // 🐍
|
[SNEK] = 0x1F40D, // 🐍
|
||||||
|
|
Loading…
Reference in a new issue