diff options
author | Travis Howell | 2003-01-30 09:15:04 +0000 |
---|---|---|
committer | Travis Howell | 2003-01-30 09:15:04 +0000 |
commit | 439046716b5dd941a24d5b82f8a143f5450886c6 (patch) | |
tree | 445815efe0dce9ba661a0e20ba4bfee962efb7f9 | |
parent | 32b0ec7632fdcb725efb2f4cf0a356ca67aac4fe (diff) | |
download | scummvm-rg350-439046716b5dd941a24d5b82f8a143f5450886c6.tar.gz scummvm-rg350-439046716b5dd941a24d5b82f8a143f5450886c6.tar.bz2 scummvm-rg350-439046716b5dd941a24d5b82f8a143f5450886c6.zip |
Fix small error in my last commits
svn-id: r6576
-rw-r--r-- | simon/items.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/items.cpp b/simon/items.cpp index 53656ddacd..bd82f3907b 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -1299,7 +1299,7 @@ void SimonState::o_177() } } - if (child != NULL && child->avail_props & 1 && !_vk_t_toggle) { + if (child != NULL && (child->avail_props & 1) && _vk_t_toggle) { if (child->avail_props & 0x100) { sprintf(buf, "%d%s", child->array[getOffsetOfChild2Param(child, 0x100)], s); s = buf; |