Prevent displaying the unformatted player identifier in UI

This commit is contained in:
TwistedUmbrella 2014-01-27 01:51:18 -05:00
parent e48ee7069a
commit aa470c7348
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ public class InputModFragment extends Fragment {
AlertDialog.Builder builder = new AlertDialog.Builder(parentActivity);
builder.setTitle(getString(R.string.select_controller_title));
builder.setMessage(getString(R.string.select_controller_message,
String.valueOf(player)));
String.valueOf(player.replace("_", ""))));
builder.setNegativeButton("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {