don't crash when there's a SMS game with pending messages

This commit is contained in:
Eric House 2014-03-04 21:38:22 -08:00
parent 5ebbf87c24
commit bcfd27ee7f

View file

@ -1064,6 +1064,14 @@ public class GameUtils {
}
return true;
}
public int transportSend( byte[] buf, final CommsAddrRec addr, int gameID )
{
DbgUtils.logf( "ResendTask.MsgSink.transportSend: dropping message "
+ "of len %d on addr type %s", buf.length,
addr.conType.toString() );
return -1;
}
}
}