From dca34c7cbe6800cc45017453ecc8c66b6b264b4f Mon Sep 17 00:00:00 2001 From: Dante Ruiz Date: Thu, 13 Sep 2018 08:32:47 -0700 Subject: [PATCH] remove warning for GCC --- interface/src/octree/SafeLanding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/octree/SafeLanding.cpp b/interface/src/octree/SafeLanding.cpp index 8b3f1ab7e4..5d4ebe9853 100644 --- a/interface/src/octree/SafeLanding.cpp +++ b/interface/src/octree/SafeLanding.cpp @@ -175,7 +175,7 @@ bool SafeLanding::isEntityLoadingComplete() { bool enableInterstitial = settings.value("enableIntersitialMode", false).toBool(); if (enableInterstitial) { - bool isVisuallyReady = (entity->isVisuallyReady() || !entityTree->renderableForEntityId(entityMapIter->first)); + isVisuallyReady = (entity->isVisuallyReady() || !entityTree->renderableForEntityId(entityMapIter->first)); } if (isEntityPhysicsReady(entity) && isVisuallyReady) {