mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-23 07:27:22 +01:00
display gameid as hex
This commit is contained in:
parent
9fa715f096
commit
0cef5fce50
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ public class GameListItem extends LinearLayout
|
||||||
case R.string.game_summary_field_empty:
|
case R.string.game_summary_field_empty:
|
||||||
break;
|
break;
|
||||||
case R.string.game_summary_field_gameid:
|
case R.string.game_summary_field_gameid:
|
||||||
value = String.format( "%d", m_summary.gameID );
|
value = String.format( "%X", m_summary.gameID );
|
||||||
break;
|
break;
|
||||||
case R.string.game_summary_field_rowid:
|
case R.string.game_summary_field_rowid:
|
||||||
value = String.format( "%d", m_rowid );
|
value = String.format( "%d", m_rowid );
|
||||||
|
|
Loading…
Add table
Reference in a new issue