mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 15:38:00 +02:00
Fixed double declaration in broadcastData
This commit is contained in:
parent
9ae7fab95f
commit
fe12437da9
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ int AvatarData::getBroadcastData(unsigned char* destinationBuffer) {
|
||||||
setSemiNibbleAt(bitItems,HAND_STATE_START_BIT,_handState);
|
setSemiNibbleAt(bitItems,HAND_STATE_START_BIT,_handState);
|
||||||
*destinationBuffer++ = bitItems;
|
*destinationBuffer++ = bitItems;
|
||||||
|
|
||||||
unsigned char bitItems = 0;
|
bitItems = 0;
|
||||||
if (_headData->_isFaceshiftConnected) { setAtBit(bitItems, IS_FACESHIFT_CONNECTED); }
|
if (_headData->_isFaceshiftConnected) { setAtBit(bitItems, IS_FACESHIFT_CONNECTED); }
|
||||||
|
|
||||||
*destinationBuffer++ = bitItems;
|
*destinationBuffer++ = bitItems;
|
||||||
|
|
Loading…
Reference in a new issue