aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-01-04 15:31:34 +0000
committerTravis Howell2004-01-04 15:31:34 +0000
commit1e6512d2d2729414cbfaecfd33fbf1a38c31c5e1 (patch)
tree2c62b3924307c51d67fb5f8a238c8ac189881846 /scumm
parent8a91ae32575128897c3e8be44992a2444034cd3f (diff)
downloadscummvm-rg350-1e6512d2d2729414cbfaecfd33fbf1a38c31c5e1.tar.gz
scummvm-rg350-1e6512d2d2729414cbfaecfd33fbf1a38c31c5e1.tar.bz2
scummvm-rg350-1e6512d2d2729414cbfaecfd33fbf1a38c31c5e1.zip
Add comment
svn-id: r12143
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v6.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp
index dc236157a0..2b2e9cd792 100644
--- a/scumm/script_v6.cpp
+++ b/scumm/script_v6.cpp
@@ -3297,7 +3297,7 @@ void ScummEngine_v6::o6_unknownEA() {
edi = pop();
esi = pop();
- if ((edi | esi) == 0) {
+ if (edi == 0) {
eax = esi;
esi = edi;
edi = eax;
@@ -3305,7 +3305,7 @@ void ScummEngine_v6::o6_unknownEA() {
eax = fetchScriptByte();
switch (eax) {
- case 197:
+ case 199:
unknownEA_func(5, esi, edi, fetchScriptWord(), eax);
break;
case 202:
@@ -3317,6 +3317,7 @@ void ScummEngine_v6::o6_unknownEA() {
}
void ScummEngine_v6::unknownEA_func(int a, int b, int c, int d, int e) {
+ // Used in mini game at Cosmic Dust Diner in puttmoon
warning("unknownEA_func(%d, %d, %d, %d, %d) stub", a, b, c, d, e);
}