Align definition of unicode_map (#19452)
This commit is contained in:
parent
4704a4e053
commit
d0ebafaea6
46 changed files with 46 additions and 46 deletions
|
@ -43,7 +43,7 @@ enum unicode_name {
|
|||
IBANG // ‽
|
||||
};
|
||||
|
||||
const uint32_t PROGMEM unicode_map[] = {
|
||||
const uint32_t unicode_map[] PROGMEM = {
|
||||
[IBANG] = 0x0203D // ‽
|
||||
};
|
||||
#endif // UNICODEMAP_ENABLE
|
||||
|
|
|
@ -157,7 +157,7 @@ enum custom_keycodes {
|
|||
|
||||
// Declare unicode map array
|
||||
enum unicode_names { BANG, SNEK };
|
||||
const uint32_t PROGMEM unicode_map[] = {
|
||||
const uint32_t unicode_map[] PROGMEM = {
|
||||
//[UCD_BANG] = 0x203D, // ‽
|
||||
//[UCD_IRONY] = 0x2E2E, // ⸮
|
||||
[SNEK] = 0x1F40D, // 🐍
|
||||
|
|
|
@ -174,7 +174,7 @@ enum Ext_Unicode{
|
|||
CHICK,
|
||||
TUMBLER
|
||||
};
|
||||
const uint32_t PROGMEM unicode_map[] = {
|
||||
const uint32_t unicode_map[] PROGMEM = {
|
||||
[PENGUIN] = 0x1F427,
|
||||
[BOAR] = 0x1F417,
|
||||
[MONKEY] = 0x1F412,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue