diff options
-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) { |