Merge branch 'thefutureofcrashesisfoggy' into 'master'
Some checks are pending
Build and test / MacOS (push) Waiting to run
Build and test / Read .env file and expose it as output (push) Waiting to run
Build and test / Windows (2019) (push) Blocked by required conditions
Build and test / Windows (2022) (push) Blocked by required conditions
Build and test / Ubuntu (push) Waiting to run

Only load FoW if it exists

Closes #8262

See merge request OpenMW/openmw!4485
This commit is contained in:
Alexei Kotov 2024-12-21 11:17:44 +00:00
commit 3e8ea8086c

View file

@ -266,7 +266,7 @@ namespace MWRender
if (segment.mFogOfWarImage != nullptr)
return;
if (cell->getFog())
if (cell->getFog() && !cell->getFog()->mFogTextures.empty())
segment.loadFogOfWar(cell->getFog()->mFogTextures.back());
else
segment.initFogOfWar();