Missed designating a player when saving custom key

This commit is contained in:
TwistedUmbrella 2014-01-24 15:39:02 -05:00
parent ec0b79e638
commit 42dd530e50
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ public class InputModFragment extends Fragment {
if (keyCode == KeyEvent.KEYCODE_BACK)
return -1;
mPrefs.edit().putInt(button, keyCode).commit();
mPrefs.edit().putInt(button + player, keyCode).commit();
return keyCode;
}