aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/script_v6.cpp
diff options
context:
space:
mode:
authorTravis Howell2010-04-04 09:36:10 +0000
committerTravis Howell2010-04-04 09:36:10 +0000
commit753a73be293c4e1a768fe87545ea72606c93b32e (patch)
treec4cf3c1bcd9aff2d19307c30e093414588159b3d /engines/scumm/script_v6.cpp
parente4f588ae4cd666588a9055066304a67821daa005 (diff)
downloadscummvm-rg350-753a73be293c4e1a768fe87545ea72606c93b32e.tar.gz
scummvm-rg350-753a73be293c4e1a768fe87545ea72606c93b32e.tar.bz2
scummvm-rg350-753a73be293c4e1a768fe87545ea72606c93b32e.zip
Fix bug #2960022 - PUTTPUTT 1: No Load/Save possible.
svn-id: r48499
Diffstat (limited to 'engines/scumm/script_v6.cpp')
-rw-r--r--engines/scumm/script_v6.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/script_v6.cpp b/engines/scumm/script_v6.cpp
index eda08d6280..c5841dfaf4 100644
--- a/engines/scumm/script_v6.cpp
+++ b/engines/scumm/script_v6.cpp
@@ -2975,7 +2975,7 @@ void ScummEngine_v6::o6_getDateTime() {
void ScummEngine_v6::o6_getPixel() {
int x, y;
- if (_game.heversion == 61) {
+ if (_game.heversion >= 61 && _game.heversion <= 62) {
x = pop();
y = pop();
} else {