aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2005-10-07 07:06:21 +0000
committerTravis Howell2005-10-07 07:06:21 +0000
commit1bd9b92b5b133ef8e4ed5436b19534b59933e831 (patch)
treebb7f0870609f7874f72f198076548d2bb717c86d /simon
parent50486480cbce7b38b976d9f339e6d86aa880ddd5 (diff)
downloadscummvm-rg350-1bd9b92b5b133ef8e4ed5436b19534b59933e831.tar.gz
scummvm-rg350-1bd9b92b5b133ef8e4ed5436b19534b59933e831.tar.bz2
scummvm-rg350-1bd9b92b5b133ef8e4ed5436b19534b59933e831.zip
Missed a few lines.
svn-id: r18954
Diffstat (limited to 'simon')
-rw-r--r--simon/vga.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/simon/vga.cpp b/simon/vga.cpp
index 72ac5e6e95..22d4ab43d3 100644
--- a/simon/vga.cpp
+++ b/simon/vga.cpp
@@ -655,7 +655,8 @@ void SimonEngine::vc10_draw() {
}
}
- if (_game & GF_SIMON2 && width >= 21) {
+ uint maxWidth = (_game == GAME_FEEBLEFILES) ? 641 : 21;
+ if (_game & GF_SIMON2 && width >= maxWidth) {
const byte *src;
byte *dst;
uint w;