Added logic to skip unassigned buttons in the config.
This commit is contained in:
parent
3db85cd1d2
commit
4175ca6052
|
@ -404,6 +404,10 @@ int GamePad_t::setMapping( nesGamePadMap_t *gpm )
|
|||
bmap[i].DeviceNum = -1;
|
||||
bmap[i].ButtonNum = -1;
|
||||
|
||||
if (gpm->btn[i][0] == 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if (gpm->btn[i][0] == 'k')
|
||||
{
|
||||
SDL_Keycode key;
|
||||
|
|
Loading…
Reference in New Issue