mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 12:49:34 +02:00
Un-do of previous commit
Seems to add an artifact when using our test scripts. Will work on that as a separate issue, as it would be an existing issue in any case.
This commit is contained in:
parent
fb2968a419
commit
404c08b0c7
1 changed files with 4 additions and 1 deletions
|
@ -88,7 +88,10 @@ void Agent::playAvatarSound(SharedSoundPointer sound) {
|
||||||
QMetaObject::invokeMethod(this, "playAvatarSound", Q_ARG(SharedSoundPointer, sound));
|
QMetaObject::invokeMethod(this, "playAvatarSound", Q_ARG(SharedSoundPointer, sound));
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
_numAvatarSoundSentBytes = 0;
|
// TODO: seems to add occasional artifact in tests. I believe it is
|
||||||
|
// correct to do this, but need to figure out for sure, so commenting this
|
||||||
|
// out until I verify.
|
||||||
|
// _numAvatarSoundSentBytes = 0;
|
||||||
setAvatarSound(sound);
|
setAvatarSound(sound);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue