aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/people.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-10-03 21:12:45 -0400
committerPaul Gilbert2015-10-03 21:12:45 -0400
commit676f0e01d17d70415c3f92ffe17a6cb251b50425 (patch)
tree3e92c4567b09a79adf34cb16595aa36e64236599 /engines/sherlock/people.cpp
parent074bc1f47e0d66ba9c824311fc31cd18224fecb3 (diff)
downloadscummvm-rg350-676f0e01d17d70415c3f92ffe17a6cb251b50425.tar.gz
scummvm-rg350-676f0e01d17d70415c3f92ffe17a6cb251b50425.tar.bz2
scummvm-rg350-676f0e01d17d70415c3f92ffe17a6cb251b50425.zip
SHERLOCK: SS: Fix hiding Holmes when viewing lab table
Diffstat (limited to 'engines/sherlock/people.cpp')
-rw-r--r--engines/sherlock/people.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/people.cpp b/engines/sherlock/people.cpp
index b1f4abba47..09dba25475 100644
--- a/engines/sherlock/people.cpp
+++ b/engines/sherlock/people.cpp
@@ -184,7 +184,7 @@ void People::reset() {
Person &p = *_data[idx];
if (IS_SERRATED_SCALPEL) {
- p._type = CHARACTER;
+ p._type = _holmesOn ? CHARACTER : HIDDEN;
p._position = Point32(100 * FIXED_INT_MULTIPLIER, 110 * FIXED_INT_MULTIPLIER);
} else if (!talk._scriptMoreFlag && !saves._justLoaded) {
p._type = (idx == 0) ? CHARACTER : INVALID;