mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
use hex for gameID in games list; fix compile error
This commit is contained in:
parent
9b1fe83b61
commit
5887140d9b
2 changed files with 2 additions and 2 deletions
|
@ -265,7 +265,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( "ID:%d", m_summary.gameID );
|
value = String.format( "ID:%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 );
|
||||||
|
|
|
@ -1627,7 +1627,7 @@ comms_invite( CommsCtxt* comms, XWEnv xwe, const NetLaunchInfo* nli,
|
||||||
|
|
||||||
void
|
void
|
||||||
comms_getInvited( const CommsCtxt* comms, /*XWEnv xwe, */
|
comms_getInvited( const CommsCtxt* comms, /*XWEnv xwe, */
|
||||||
XP_U16* nInvites, CommsAddrRec* XP_UNUSED(inviteRecs) )
|
XP_U16* nInvites, CommsAddrRec* XP_UNUSED_DBG(inviteRecs) )
|
||||||
{
|
{
|
||||||
XP_U16 count = 0;
|
XP_U16 count = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue