mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 06:23:53 +00:00
Fix for explosion effects playing when the game is paused
This commit is contained in:
parent
e0dfc1425e
commit
2b53e5d965
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue