pass to game name util whether new game is to be solo (but don't use info yet)

This commit is contained in:
Eric House 2015-03-05 07:40:21 -08:00
parent 4481b1db39
commit 425c800d73
2 changed files with 2 additions and 2 deletions

View file

@ -267,7 +267,7 @@ public class GameUtils {
return result;
}
public static String makeDefaultName( Context context )
public static String makeDefaultName( Context context, boolean isSolo )
{
return LocUtils.getString( context, R.string.default_game_name );
}

View file

@ -864,7 +864,7 @@ public class GamesListDelegate extends ListDelegateBase
TextView edit = (TextView)dialog.findViewById( R.id.msg );
edit.setText( msg );
edit = (TextView)dialog.findViewById( R.id.edit );
edit.setText( GameUtils.makeDefaultName( m_activity ) );
edit.setText( GameUtils.makeDefaultName( m_activity, m_nextIsSolo ) );
break;
}
}