diff options
-rw-r--r-- | scumm/script_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index cd42be1659..0de160b0bd 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -580,7 +580,7 @@ void Scumm_v6::o6_bor() { void Scumm_v6::o6_band() { int a = pop(); - push(pop() | a); + push(pop() & a); } void Scumm_v6::o6_pop() { |