1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-24 18:39:59 +00:00

attempt to fix narrowing char compiler error

This commit is contained in:
Dwedit 2019-05-21 20:56:52 -05:00
parent 64a43dd280
commit f8002218cd

@ -173,7 +173,7 @@ struct key_desc key_descriptors[RARCH_MAX_KEYS] =
{RETROK_BREAK, "Break"}, {RETROK_BREAK, "Break"},
{RETROK_MENU, "Menu"}, {RETROK_MENU, "Menu"},
{RETROK_POWER, "Power"}, {RETROK_POWER, "Power"},
{RETROK_EURO, {0xE2, 0x82, 0xAC, 0x00}}, /* "€" */ {RETROK_EURO, {(char)0xE2, (char)0x82, (char)0xAC, (char)0x00}}, /* "€" */
{RETROK_UNDO, "Undo"}, {RETROK_UNDO, "Undo"},
{RETROK_OEM_102, "OEM-102"} {RETROK_OEM_102, "OEM-102"}
}; };