mirror of
https://github.com/lubosz/overte.git
synced 2025-05-07 08:38:45 +02:00
Remove unused debugging variable
This commit is contained in:
parent
d7a1ecdbb3
commit
8872e9e4e7
1 changed files with 0 additions and 1 deletions
|
@ -1005,7 +1005,6 @@ void AvatarMixer::parseDomainServerSettings(const QJsonObject& domainSettings) {
|
||||||
{ // Fraction of downstream bandwidth reserved for 'hero' avatars:
|
{ // Fraction of downstream bandwidth reserved for 'hero' avatars:
|
||||||
static const QString PRIORITY_FRACTION_KEY = "priority_fraction";
|
static const QString PRIORITY_FRACTION_KEY = "priority_fraction";
|
||||||
if (avatarMixerGroupObject.contains(PRIORITY_FRACTION_KEY)) {
|
if (avatarMixerGroupObject.contains(PRIORITY_FRACTION_KEY)) {
|
||||||
bool isDouble = avatarMixerGroupObject[PRIORITY_FRACTION_KEY].isDouble();
|
|
||||||
float priorityFraction = float(avatarMixerGroupObject[PRIORITY_FRACTION_KEY].toDouble());
|
float priorityFraction = float(avatarMixerGroupObject[PRIORITY_FRACTION_KEY].toDouble());
|
||||||
_slavePool.setPriorityReservedFraction(std::min(std::max(0.0f, priorityFraction), 1.0f));
|
_slavePool.setPriorityReservedFraction(std::min(std::max(0.0f, priorityFraction), 1.0f));
|
||||||
qCDebug(avatars) << "Avatar mixer reserving" << priorityFraction << "of bandwidth for priority avatars";
|
qCDebug(avatars) << "Avatar mixer reserving" << priorityFraction << "of bandwidth for priority avatars";
|
||||||
|
|
Loading…
Reference in a new issue