aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2006-03-22 08:56:10 +0000
committerTravis Howell2006-03-22 08:56:10 +0000
commit00d44af2c19f6bb022f3bf22485e9ee2f611cc34 (patch)
tree08f14f59c5d7e1ec95d6c93ea68dc5f84ee86521 /engines
parentc0198b44647cb330489adf388b078b644354c0d5 (diff)
downloadscummvm-rg350-00d44af2c19f6bb022f3bf22485e9ee2f611cc34.tar.gz
scummvm-rg350-00d44af2c19f6bb022f3bf22485e9ee2f611cc34.tar.bz2
scummvm-rg350-00d44af2c19f6bb022f3bf22485e9ee2f611cc34.zip
Skip columns isn't used for overlayed or scaled images in FF
svn-id: r21401
Diffstat (limited to 'engines')
-rw-r--r--engines/simon/vga.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/simon/vga.cpp b/engines/simon/vga.cpp
index ba13f1dc6b..3a83002949 100644
--- a/engines/simon/vga.cpp
+++ b/engines/simon/vga.cpp
@@ -857,8 +857,6 @@ void SimonEngine::drawImages_Feeble(VC10_state *state) {
state->dl = state->width;
state->dh = state->height;
- vc10_skip_cols(state);
-
dst_org = state->surf_addr;
w = 0;
do {
@@ -867,8 +865,9 @@ void SimonEngine::drawImages_Feeble(VC10_state *state) {
h = 0;
do {
- *dst = *src++;
+ *dst = *src;
dst += _screenWidth;
+ src++;
} while (++h != state->draw_height);
dst_org++;
} while (++w != state->draw_width);
@@ -893,8 +892,6 @@ void SimonEngine::drawImages_Feeble(VC10_state *state) {
state->dl = state->width;
state->dh = state->height;
- vc10_skip_cols(state);
-
dst_org = state->surf_addr;
w = 0;
do {