mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
don't add chats to queue at len 64 rather than 128
This commit is contained in:
parent
7b18da70db
commit
a191c6fc2a
1 changed files with 1 additions and 1 deletions
|
@ -1969,7 +1969,7 @@ comms_canChat( const CommsCtxt* const comms )
|
|||
{
|
||||
XP_Bool canChat = comms_isConnected( comms )
|
||||
&& comms->connID != 0
|
||||
&& 128 > comms->queueLen;
|
||||
&& 64 > comms->queueLen;
|
||||
LOG_RETURNF( "%d", canChat );
|
||||
return canChat;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue