diff options
-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; |