mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
explicitly enter signed chars and avoid undefined behavior
This commit is contained in:
parent
f8002218cd
commit
dac332a123
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ struct key_desc key_descriptors[RARCH_MAX_KEYS] =
|
|||
{RETROK_BREAK, "Break"},
|
||||
{RETROK_MENU, "Menu"},
|
||||
{RETROK_POWER, "Power"},
|
||||
{RETROK_EURO, {(char)0xE2, (char)0x82, (char)0xAC, (char)0x00}}, /* "€" */
|
||||
{RETROK_EURO, {-30, -126, -84, 0}}, /* "€" */
|
||||
{RETROK_UNDO, "Undo"},
|
||||
{RETROK_OEM_102, "OEM-102"}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue