diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameUtils.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameUtils.java index 93ee668ff..6a99ed1d2 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameUtils.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameUtils.java @@ -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 ); } diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java index 978d0f0e0..43812c04f 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesListDelegate.java @@ -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; } }