aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v6.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-08-28 04:02:49 +0000
committerTravis Howell2004-08-28 04:02:49 +0000
commitdc7c03029dd74b58495b65eebe0571d56ff05a01 (patch)
tree1e4b3fae00b21208cea9846cfe8520f337081793 /scumm/script_v6.cpp
parent26ff4a2b703fc040f1d09a3341b098cc9e3bfeb1 (diff)
downloadscummvm-rg350-dc7c03029dd74b58495b65eebe0571d56ff05a01.tar.gz
scummvm-rg350-dc7c03029dd74b58495b65eebe0571d56ff05a01.tar.bz2
scummvm-rg350-dc7c03029dd74b58495b65eebe0571d56ff05a01.zip
Update HE games
Update HE game issues/todo Disable opcode E4 (Specific to fbear and has no benefit so far) svn-id: r14802
Diffstat (limited to 'scumm/script_v6.cpp')
-rw-r--r--scumm/script_v6.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp
index ffb96a831a..753714a8bf 100644
--- a/scumm/script_v6.cpp
+++ b/scumm/script_v6.cpp
@@ -3079,7 +3079,12 @@ void ScummEngine_v6::o6_getPixel() {
}
void ScummEngine_v6::o6_setBoxSet() {
+ //FIXME Causes glitches and game to crash
+ // Only used in fbear when leaving the basement
+
int arg = pop();
+ return;
+
const byte *room = getResourceAddress(rtRoom, _roomResource);
const byte *boxd = NULL, *boxm = NULL;
int32 dboxSize, mboxSize;