1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-20 19:39:41 +00:00

Fix for explosion effects playing when the game is paused

This commit is contained in:
scrawl 2015-06-19 03:32:48 +02:00
parent e0dfc1425e
commit 2b53e5d965

View file

@ -350,7 +350,9 @@ namespace MWRender
void RenderingManager::update(float dt, bool paused)
{
mEffectManager->update(dt);
if (!paused)
mEffectManager->update(dt);
mSky->update(dt);
mWater->update(dt);
mCamera->update(dt, paused);