diff options
author | Travis Howell | 2006-04-14 10:36:44 +0000 |
---|---|---|
committer | Travis Howell | 2006-04-14 10:36:44 +0000 |
commit | 1a629682a5fc74850ade0d39fde6c642a60bd2c4 (patch) | |
tree | 938f897a933f947f141544094d29d4c11dcf29b9 | |
parent | 6df54763ef89073220435f9be8c842af5132deac (diff) | |
download | scummvm-rg350-1a629682a5fc74850ade0d39fde6c642a60bd2c4.tar.gz scummvm-rg350-1a629682a5fc74850ade0d39fde6c642a60bd2c4.tar.bz2 scummvm-rg350-1a629682a5fc74850ade0d39fde6c642a60bd2c4.zip |
Fix object name display, after conversation in FF
svn-id: r21883
-rw-r--r-- | engines/simon/verb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/verb.cpp b/engines/simon/verb.cpp index 4160c51f2d..4b1b140da7 100644 --- a/engines/simon/verb.cpp +++ b/engines/simon/verb.cpp @@ -323,7 +323,7 @@ HitArea *SimonEngine::findBox(uint hitarea_id) { uint count = ARRAYSIZE(_hitAreas); do { - if (ha->id == hitarea_id) + if (ha->id == hitarea_id && ha->flags != 0) return ha; } while (ha++, --count); return NULL; |