diff options
author | Paul Gilbert | 2015-10-10 18:27:47 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-10-10 18:27:47 -0400 |
commit | 9a6a65a9659325ef636fd2ac50e5094b0a85c19c (patch) | |
tree | 87c75d16fc15e04bf9a81c141ac741870b18dacc /engines/sherlock | |
parent | d089172f8725156dad47a7c02544f04a4833ce79 (diff) | |
download | scummvm-rg350-9a6a65a9659325ef636fd2ac50e5094b0a85c19c.tar.gz scummvm-rg350-9a6a65a9659325ef636fd2ac50e5094b0a85c19c.tar.bz2 scummvm-rg350-9a6a65a9659325ef636fd2ac50e5094b0a85c19c.zip |
SHERLOCK: SS: Don't reset Holme's position when loading savegames
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/people.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sherlock/people.cpp b/engines/sherlock/people.cpp index 09dba25475..8057e26204 100644 --- a/engines/sherlock/people.cpp +++ b/engines/sherlock/people.cpp @@ -185,7 +185,8 @@ void People::reset() { if (IS_SERRATED_SCALPEL) { p._type = _holmesOn ? CHARACTER : HIDDEN; - p._position = Point32(100 * FIXED_INT_MULTIPLIER, 110 * FIXED_INT_MULTIPLIER); + if (!saves._justLoaded) + p._position = Point32(100 * FIXED_INT_MULTIPLIER, 110 * FIXED_INT_MULTIPLIER); } else if (!talk._scriptMoreFlag && !saves._justLoaded) { p._type = (idx == 0) ? CHARACTER : INVALID; p._position = Point32(36 * FIXED_INT_MULTIPLIER, 29 * FIXED_INT_MULTIPLIER); |