remove extra plus in AvatarData parseData

This commit is contained in:
Stephen Birarda 2013-07-11 12:27:48 -07:00
parent 4eb25be14c
commit 769205253f

View file

@ -180,7 +180,7 @@ int AvatarData::parseData(unsigned char* sourceBuffer, int numBytes) {
unsigned char* startPosition = sourceBuffer;
// push past the node ID
sourceBuffer += + sizeof(uint16_t);
sourceBuffer += sizeof(uint16_t);
// Body world position
memcpy(&_position, sourceBuffer, sizeof(float) * 3);