bug fix in protocol, increase size of chat dialog
This commit is contained in:
parent
0adead367d
commit
976fb0e23d
2 changed files with 6 additions and 5 deletions
|
@ -5,7 +5,7 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>360</width>
|
<width>435</width>
|
||||||
<height>405</height>
|
<height>405</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -415,13 +415,14 @@ bool CProtocol::ParseMessage ( const CVector<uint8_t>& vecbyData,
|
||||||
|
|
||||||
// immediately send acknowledge message
|
// immediately send acknowledge message
|
||||||
CreateAndImmSendAcknMess ( iRecID, iRecCounter );
|
CreateAndImmSendAcknMess ( iRecID, iRecCounter );
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// save current message ID and counter to find out if message was resent
|
// save current message ID and counter to find out if message
|
||||||
|
// was resent
|
||||||
iOldRecID = iRecID;
|
iOldRecID = iRecID;
|
||||||
iOldRecCnt = iRecCounter;
|
iOldRecCnt = iRecCounter;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
bRet = true; // return error code
|
bRet = true; // return error code
|
||||||
|
|
Loading…
Reference in a new issue