diff options
author | Vladimir | 2011-06-09 10:32:23 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:33:41 +0200 |
commit | fce91bd196d6c1d17fb56b4a983b219a55fde045 (patch) | |
tree | 21403f1b46a81517a250c86bd47c91e4987a0114 | |
parent | bea919c9b45d8d6d31adcb0b8edc3ab48d5b8c35 (diff) | |
download | scummvm-rg350-fce91bd196d6c1d17fb56b4a983b219a55fde045.tar.gz scummvm-rg350-fce91bd196d6c1d17fb56b4a983b219a55fde045.tar.bz2 scummvm-rg350-fce91bd196d6c1d17fb56b4a983b219a55fde045.zip |
DREAMWEB: fixed of flag handling
-rw-r--r-- | engines/dreamweb/runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/runtime.h b/engines/dreamweb/runtime.h index 0772e5acad..8d4592f401 100644 --- a/engines/dreamweb/runtime.h +++ b/engines/dreamweb/runtime.h @@ -168,7 +168,7 @@ struct Flags { } inline void update_o(uint8 v, uint8 old) { - _o = (old & 0x80) == (v & 0x80); + _o = (old & 0x80) != (v & 0x80); } inline void update(uint16 v) { |