aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/simon/vga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/simon/vga.cpp b/engines/simon/vga.cpp
index 83cdaac264..36f6e59772 100644
--- a/engines/simon/vga.cpp
+++ b/engines/simon/vga.cpp
@@ -879,7 +879,7 @@ void SimonEngine::drawImages_Feeble(VC10_state *state) {
_scaleWidth = state->width;
_scaleHeight = state->height;
} else {
- scaleClip(state->height, state->width, state->y, state->x, _scrollY);
+ scaleClip(state->height, state->width, state->y, state->x, state->y + _scrollY);
}
} else if (state->flags & kDFOverlayed) {
state->surf_addr = getScaleBuf();
@@ -913,7 +913,7 @@ void SimonEngine::drawImages_Feeble(VC10_state *state) {
_vgaCurSpritePriority /= 10;
if (_vgaCurSpritePriority != 900) {
- scaleClip(_scaleHeight, _scaleWidth, _scaleY, _scaleX, _scrollY);
+ scaleClip(_scaleHeight, _scaleWidth, _scaleY, _scaleX, _scaleY + _scrollY);
}
} else {
if (drawImages_clip(state) == 0)