mirror of
https://github.com/libretro/RetroArch.git
synced 2025-01-24 18:36:31 +00:00
attempt to fix narrowing char compiler error
This commit is contained in:
parent
64a43dd280
commit
f8002218cd
@ -173,7 +173,7 @@ struct key_desc key_descriptors[RARCH_MAX_KEYS] =
|
||||
{RETROK_BREAK, "Break"},
|
||||
{RETROK_MENU, "Menu"},
|
||||
{RETROK_POWER, "Power"},
|
||||
{RETROK_EURO, {0xE2, 0x82, 0xAC, 0x00}}, /* "€" */
|
||||
{RETROK_EURO, {(char)0xE2, (char)0x82, (char)0xAC, (char)0x00}}, /* "€" */
|
||||
{RETROK_UNDO, "Undo"},
|
||||
{RETROK_OEM_102, "OEM-102"}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user