This commit is contained in:
Eric House 2013-06-05 08:04:00 -07:00
parent 280154a12c
commit 6b2ec193c2

View file

@ -189,12 +189,12 @@ public class GameListItem extends LinearLayout
break; break;
} }
if ( null != value ) {
String name = GameUtils.getName( m_context, m_rowid ); String name = GameUtils.getName( m_context, m_rowid );
if ( null != value ) {
value = m_context.getString( R.string.str_game_namef, value = m_context.getString( R.string.str_game_namef,
name, value ); name, value );
} else { } else {
value = GameUtils.getName( m_context, m_rowid ); value = name;
} }
view.setText( value ); view.setText( value );