mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-16 07:58:05 +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);
|
||||
*destinationBuffer++ = bitItems;
|
||||
|
||||
unsigned char bitItems = 0;
|
||||
bitItems = 0;
|
||||
if (_headData->_isFaceshiftConnected) { setAtBit(bitItems, IS_FACESHIFT_CONNECTED); }
|
||||
|
||||
*destinationBuffer++ = bitItems;
|
||||
|
|
Loading…
Reference in a new issue