diff options
Diffstat (limited to 'engines/zvision')
-rw-r--r-- | engines/zvision/zvision.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/zvision/zvision.cpp b/engines/zvision/zvision.cpp index 080c763342..c32e78214f 100644 --- a/engines/zvision/zvision.cpp +++ b/engines/zvision/zvision.cpp @@ -135,8 +135,10 @@ Common::Error ZVision::run() { processEvents(); - _scriptManager->update(deltaTime); + // Call _renderManager->update() first so the background renders + // before anything that puzzles/controls will render _renderManager->update(deltaTime); + _scriptManager->update(deltaTime); // Update the screen _system->updateScreen(); |