mirror of
https://github.com/libretro/smsplus-gx.git
synced 2024-12-03 23:30:49 +00:00
Fixing remapping support for Colecovision buttons again.
This commit is contained in:
parent
03fbd1b7f1
commit
7164b74b8d
@ -330,11 +330,11 @@ static const char* Return_Text_Button(uint32_t button)
|
||||
break;
|
||||
/* L button */
|
||||
case 9:
|
||||
return "Left Shoulder";
|
||||
return "L Shoulder";
|
||||
break;
|
||||
/* R button */
|
||||
case 8:
|
||||
return "Right Shoulder";
|
||||
return "R Shoulder";
|
||||
break;
|
||||
/* Start */
|
||||
case 13:
|
||||
@ -449,7 +449,7 @@ static void Input_Remapping()
|
||||
{
|
||||
if (Event.type == SDL_KEYDOWN)
|
||||
{
|
||||
option.config_buttons[currentselection - 1] = Event.key.keysym.sym;
|
||||
option.config_buttons[(currentselection - 1) + (menu_config_input ? 7 : 0) ] = Event.key.keysym.sym;
|
||||
exit_map = 1;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user