mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-05-10 04:26:50 +03:00
Make arguments passed to LuaManager::synchronizedUpdate consistent with arguments passed to LuaManager::update. Fixes #6431.
This commit is contained in:
parent
a9d7598532
commit
5f195b7576
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ bool OMW::Engine::frame(float frametime)
|
||||||
|
|
||||||
// Should be called after input manager update and before any change to the game world.
|
// Should be called after input manager update and before any change to the game world.
|
||||||
// It applies to the game world queued changes from the previous frame.
|
// It applies to the game world queued changes from the previous frame.
|
||||||
mLuaManager->synchronizedUpdate(paused, frametime);
|
mLuaManager->synchronizedUpdate(mEnvironment.getWindowManager()->isGuiMode(), frametime);
|
||||||
|
|
||||||
// update game state
|
// update game state
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue