aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/transitions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/transitions.cpp')
-rw-r--r--engines/sci/graphics/transitions.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/sci/graphics/transitions.cpp b/engines/sci/graphics/transitions.cpp
index 787e39cef0..8acbebcb30 100644
--- a/engines/sci/graphics/transitions.cpp
+++ b/engines/sci/graphics/transitions.cpp
@@ -265,7 +265,14 @@ void GfxTransitions::copyRectToScreen(const Common::Rect rect, bool blackoutFlag
_screen->copyRectToScreen(rect);
} else {
Graphics::Surface *surface = g_system->lockScreen();
- surface->fillRect(rect, 0);
+ if (!_screen->getUpscaledHires()) {
+ surface->fillRect(rect, 0);
+ } else {
+ Common::Rect upscaledRect = rect;
+ upscaledRect.top *= 2; upscaledRect.bottom *= 2;
+ upscaledRect.left *= 2; upscaledRect.right *= 2;
+ surface->fillRect(upscaledRect, 0);
+ }
g_system->unlockScreen();
}
}