diff options
author | Travis Howell | 2006-06-12 06:47:38 +0000 |
---|---|---|
committer | Travis Howell | 2006-06-12 06:47:38 +0000 |
commit | 48358fb09c04b1e2a7425de1036069e58b6c8030 (patch) | |
tree | e449fa7c8b459fe815d444df635b531a49fa2b1d | |
parent | 1e358906ef6c540568788efec819851543ae0bcc (diff) | |
download | scummvm-rg350-48358fb09c04b1e2a7425de1036069e58b6c8030.tar.gz scummvm-rg350-48358fb09c04b1e2a7425de1036069e58b6c8030.tar.bz2 scummvm-rg350-48358fb09c04b1e2a7425de1036069e58b6c8030.zip |
Fix bug #1500552 - FF: Glitches in Swamp Soup game of arcade
svn-id: r23055
-rw-r--r-- | engines/simon/event.cpp | 6 | ||||
-rw-r--r-- | engines/simon/vga.cpp | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/engines/simon/event.cpp b/engines/simon/event.cpp index 3cde8adc94..1448633743 100644 --- a/engines/simon/event.cpp +++ b/engines/simon/event.cpp @@ -348,7 +348,11 @@ void SimonEngine::timer_proc1() { } if (_copyPartialMode == 2) { - fillFrontFromBack(176, 61, _screenWidth - 176, 134 - 61); + if (getGameType() == GType_FF) { + fillFrontFromBack(0, 0, _screenWidth, _screenHeight); + } else { + fillFrontFromBack(176, 61, _screenWidth - 176, 134 - 61); + } _copyPartialMode = 0; } diff --git a/engines/simon/vga.cpp b/engines/simon/vga.cpp index 3d2b926aeb..6fab10dd6c 100644 --- a/engines/simon/vga.cpp +++ b/engines/simon/vga.cpp @@ -1730,7 +1730,9 @@ void SimonEngine::vc36_setWindowImage() { uint16 vga_res = vcReadNextWord(); uint16 windowNum = vcReadNextWord(); - if (getGameType() == GType_SIMON2) { + if (getGameType() == GType_FF) { + _copyPartialMode = 2; + } else if (getGameType() == GType_SIMON2) { set_video_mode_internal(windowNum, vga_res); } else if (getGameType() == GType_SIMON1) { if (windowNum == 16) { |