mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +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:
|
||||
break;
|
||||
case R.string.game_summary_field_gameid:
|
||||
value = String.format( "%d", m_summary.gameID );
|
||||
value = String.format( "%X", m_summary.gameID );
|
||||
break;
|
||||
case R.string.game_summary_field_rowid:
|
||||
value = String.format( "%d", m_rowid );
|
||||
|
|
Loading…
Reference in a new issue