aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/screen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/illusions/screen.cpp')
-rw-r--r--engines/illusions/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/illusions/screen.cpp b/engines/illusions/screen.cpp
index 6a991cd782..9979cd1fa8 100644
--- a/engines/illusions/screen.cpp
+++ b/engines/illusions/screen.cpp
@@ -423,7 +423,7 @@ void Screen::updateSprites() {
_drawQueue->drawAll();
if (_isScreenOffsetActive)
clearScreenOffsetAreas();
- if (!_displayOn) // TODO Check if a video is playing then don't do it
+ if (!_displayOn && !_vm->isVideoPlaying())
_backSurface->fillRect(Common::Rect(_backSurface->w, _backSurface->h), 0);
g_system->copyRectToScreen((byte*)_backSurface->getBasePtr(0, 0), _backSurface->pitch, 0, 0, _backSurface->w, _backSurface->h);
}