mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
required by prev commit: follow api change to work around marshmallow
address change.
This commit is contained in:
parent
7805900c07
commit
f7df11b923
2 changed files with 2 additions and 2 deletions
|
@ -450,7 +450,7 @@ public class CommsTransport implements TransportProcs,
|
||||||
gameID, buf );
|
gameID, buf );
|
||||||
break;
|
break;
|
||||||
case COMMS_CONN_BT:
|
case COMMS_CONN_BT:
|
||||||
nSent = BTService.enqueueFor( context, buf, addr.bt_btAddr, gameID );
|
nSent = BTService.enqueueFor( context, buf, addr, gameID );
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
Assert.fail();
|
Assert.fail();
|
||||||
|
|
|
@ -62,7 +62,7 @@ public class MultiMsgSink implements TransportProcs {
|
||||||
|
|
||||||
public int sendViaBluetooth( byte[] buf, int gameID, CommsAddrRec addr )
|
public int sendViaBluetooth( byte[] buf, int gameID, CommsAddrRec addr )
|
||||||
{
|
{
|
||||||
return BTService.enqueueFor( m_context, buf, addr.bt_btAddr, gameID );
|
return BTService.enqueueFor( m_context, buf, addr, gameID );
|
||||||
}
|
}
|
||||||
|
|
||||||
public int sendViaSMS( byte[] buf, int gameID, CommsAddrRec addr )
|
public int sendViaSMS( byte[] buf, int gameID, CommsAddrRec addr )
|
||||||
|
|
Loading…
Reference in a new issue