diff --git a/ext/ghoul b/ext/ghoul index e96548f058..5cde645215 160000 --- a/ext/ghoul +++ b/ext/ghoul @@ -1 +1 @@ -Subproject commit e96548f0588696ac96aa8d9744cb11edb9de4393 +Subproject commit 5cde64521525f9094b95a73bca6ca1ccac1a5541 diff --git a/modules/iswa/rendering/iswacygnet.cpp b/modules/iswa/rendering/iswacygnet.cpp index 9b786811de..f5c9e4e92a 100644 --- a/modules/iswa/rendering/iswacygnet.cpp +++ b/modules/iswa/rendering/iswacygnet.cpp @@ -175,6 +175,9 @@ void IswaCygnet::render(const RenderData& data){ void IswaCygnet::update(const UpdateData& data){ + if (!_enabled) + return; + // the texture resource is downloaded ahead of time, so we need to // now if we are going backwards or forwards double clockwiseSign = (Time::ref().deltaTime()>0) ? 1.0 : -1.0;