diff --git a/interface/src/ui/overlays/BillboardOverlay.cpp b/interface/src/ui/overlays/BillboardOverlay.cpp index 58790c4722..9f1ffd619b 100644 --- a/interface/src/ui/overlays/BillboardOverlay.cpp +++ b/interface/src/ui/overlays/BillboardOverlay.cpp @@ -53,12 +53,12 @@ void BillboardOverlay::update(float deltatime) { } void BillboardOverlay::render(RenderArgs* args) { - if (!_texture) { + if (!_isLoaded) { _isLoaded = true; _texture = DependencyManager::get()->getTexture(_url); } - if (!_visible || !_texture || !_texture->isLoaded()) { + if (!_visible || !_texture->isLoaded()) { return; }