mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +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:
|
||||
break;
|
||||
case R.string.game_summary_field_gameid:
|
||||
value = String.format( "ID:%d", m_summary.gameID );
|
||||
value = String.format( "ID:%X", m_summary.gameID );
|
||||
break;
|
||||
case R.string.game_summary_field_rowid:
|
||||
value = String.format( "%d", m_rowid );
|
||||
|
|
|
@ -1627,7 +1627,7 @@ comms_invite( CommsCtxt* comms, XWEnv xwe, const NetLaunchInfo* nli,
|
|||
|
||||
void
|
||||
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue