mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:42:58 +02:00
add a missing return
This commit is contained in:
parent
4bf8f3a465
commit
9d82347994
1 changed files with 2 additions and 0 deletions
|
@ -214,6 +214,8 @@ int HandData::decodeRemoteData(const QByteArray& dataByteArray) {
|
||||||
unsigned char requiredLength = (unsigned char)(sourceBuffer - startPosition);
|
unsigned char requiredLength = (unsigned char)(sourceBuffer - startPosition);
|
||||||
unsigned char checkLength = *sourceBuffer++;
|
unsigned char checkLength = *sourceBuffer++;
|
||||||
assert(checkLength == requiredLength);
|
assert(checkLength == requiredLength);
|
||||||
|
|
||||||
|
return sourceBuffer - startPosition;
|
||||||
}
|
}
|
||||||
|
|
||||||
void HandData::setFingerTrailLength(unsigned int length) {
|
void HandData::setFingerTrailLength(unsigned int length) {
|
||||||
|
|
Loading…
Reference in a new issue