Update libretro.c: Add missing input descriptors

Add missing L and R descriptors. Fixes #48
This commit is contained in:
Hedonium 2018-05-03 10:34:34 -04:00
parent 434612ab68
commit c7959bb001
1 changed files with 2 additions and 0 deletions

View File

@ -414,6 +414,8 @@ static void set_input_descriptors()
{ 0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_A, "A" },
{ 0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_SELECT, "Select" },
{ 0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_START, "Start" },
{ 0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_L, "L" },
{ 0, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_R, "R" },
{ 0 },
};