From 00d44af2c19f6bb022f3bf22485e9ee2f611cc34 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Wed, 22 Mar 2006 08:56:10 +0000 Subject: Skip columns isn't used for overlayed or scaled images in FF svn-id: r21401 --- engines/simon/vga.cpp | 7 ++----- 1 file 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 { -- cgit v1.2.3