Added logic to skip unassigned buttons in the config.

This commit is contained in:
Matthew Budd 2020-07-24 22:26:09 -04:00
parent 3db85cd1d2
commit 4175ca6052
1 changed files with 4 additions and 0 deletions

View File

@ -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;