mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 01:03:19 +02:00
Fix mac warning
This commit is contained in:
parent
28b45ce1d9
commit
405ec228b8
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ using TextureAndFence = hifi::qml::OffscreenSurface::TextureAndFence;
|
|||
void MacQml::update() {
|
||||
auto rootItem =_surface->getRootItem();
|
||||
float now = sinf(secTimestampNow());
|
||||
rootItem->setProperty("level", abs(now));
|
||||
rootItem->setProperty("level", fabs(now));
|
||||
rootItem->setProperty("muted", now > 0.0f);
|
||||
rootItem->setProperty("statsValue", rand());
|
||||
|
||||
|
|
Loading…
Reference in a new issue