diff options
author | Travis Howell | 2003-12-28 05:52:52 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-28 05:52:52 +0000 |
commit | e91224589f740e52bc5788b9e1e90cbe4d22dc28 (patch) | |
tree | 242236cff46f477b7d98b54333176993d5987178 | |
parent | e76c4c9ebe0961b0dbef37c8bfd317a116e94dc5 (diff) | |
download | scummvm-rg350-e91224589f740e52bc5788b9e1e90cbe4d22dc28.tar.gz scummvm-rg350-e91224589f740e52bc5788b9e1e90cbe4d22dc28.tar.bz2 scummvm-rg350-e91224589f740e52bc5788b9e1e90cbe4d22dc28.zip |
Add additional case for putt putt games
svn-id: r11990
-rw-r--r-- | scumm/script_v6.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 53b1245155..13639f09de 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1624,7 +1624,14 @@ void ScummEngine_v6::o6_roomOps() { else setPalette(a); break; - + case 221: + int len; + len = resStrLen(_scriptPointer); + _scriptPointer += len + 1; + _saveLoadFlag = pop(); + _saveLoadSlot = 99; + _saveLoadCompatible = true; + break; default: error("o6_roomOps: default case %d", op); } |