mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 00:43:30 +02:00
Solve : implicit conversion from ‘float’ to ‘double’ issue
This commit is contained in:
parent
e08e9d6821
commit
11f8f5cffc
1 changed files with 1 additions and 1 deletions
|
@ -2277,7 +2277,7 @@ void MyAvatar::restrictScaleFromDomainSettings(const QJsonObject& domainSettings
|
|||
_targetScale = loadSetting(settings, "scale", 1.0f);
|
||||
|
||||
qCDebug(interfaceapp, "This domain requires a minimum avatar scale of %f and a maximum avatar scale of %f. Current avatar scale is %f",
|
||||
(double)_domainMinimumScale, (double)_domainMaximumScale, (double)_targetScale);
|
||||
_domainMinimumScale, _domainMaximumScale, _targetScale);
|
||||
|
||||
// debug to log if this avatar's scale in this domain will be clamped
|
||||
float clampedScale = glm::clamp(_targetScale, _domainMinimumScale, _domainMaximumScale);
|
||||
|
|
Loading…
Reference in a new issue