aboutsummaryrefslogtreecommitdiff
path: root/simon/simon.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-03-15 14:03:56 +0000
committerTravis Howell2004-03-15 14:03:56 +0000
commitd26f96e9ad405c9d55b40c10e0c2406f1f1bfca0 (patch)
tree640a8ddf8887b3fb9ae861e73ae8c0d2dc0cb971 /simon/simon.cpp
parentc0e6295845c4d480f8afe1b93eb41083bd0f7406 (diff)
downloadscummvm-rg350-d26f96e9ad405c9d55b40c10e0c2406f1f1bfca0.tar.gz
scummvm-rg350-d26f96e9ad405c9d55b40c10e0c2406f1f1bfca0.tar.bz2
scummvm-rg350-d26f96e9ad405c9d55b40c10e0c2406f1f1bfca0.zip
HACK needed for Spanish Simon1 Talkie too.
svn-id: r13307
Diffstat (limited to 'simon/simon.cpp')
-rw-r--r--simon/simon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 75e313406c..04bd9b8c10 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -4346,7 +4346,7 @@ byte *SimonEngine::read_vga_from_datfile_2(uint id) {
// allocate more space for text to cope with foreign languages that use
// up more space than english. I hope 6400 bytes are enough. This number
// is base on: 2 (lines) * 320 (screen width) * 10 (textheight) -- olki
- if ((_game & GF_SIMON2) && id == 5)
+ if (id == 5)
size += 6400;
dst = setup_vga_destination(size);