aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}