From c7959bb001cf75a1698a1015430ace8917799d39 Mon Sep 17 00:00:00 2001 From: Hedonium Date: Thu, 3 May 2018 10:34:34 -0400 Subject: Update libretro.c: Add missing input descriptors Add missing L and R descriptors. Fixes #48 --- libretro.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libretro.c') diff --git a/libretro.c b/libretro.c index 757707f..444c31c 100644 --- a/libretro.c +++ b/libretro.c @@ -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 }, }; -- cgit v1.2.3