Fix mac warning

This commit is contained in:
Brad Davis 2018-10-01 16:07:02 -07:00
parent 28b45ce1d9
commit 405ec228b8

View file

@ -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());