aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--simon/vga.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp
index 39127f04b7..b8065c0e4b 100644
--- a/simon/vga.cpp
+++ b/simon/vga.cpp
@@ -837,8 +837,10 @@ void SimonEngine::vc10_draw() {
offs = ((vlut[0]) * 2 + state.x) * 8;
offs2 = (vlut[1] + state.y);
} else {
- offs = ((vlut[0] - _video_windows[16]) * 2 + state.x) * 8;
+ offs = ((vlut[0] - _video_windows[16]) * 2 + state.x);
offs2 = (vlut[1] - _video_windows[17] + state.y);
+ if (getGameType() != GType_FF)
+ offs *= 8;
}
state.surf2_addr += offs + offs2 * state.surf2_pitch;