diff options
author | Paul Gilbert | 2015-05-06 23:39:23 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-05-06 23:39:23 -0400 |
commit | 97bec43799aa85b9ef49e4e26016de95dd054e71 (patch) | |
tree | 76b784460fb3bf32d504dde0915e53a9b8241265 /engines/sherlock | |
parent | 6c41a9be524385f16c33041885a7f5c4603a0f0e (diff) | |
download | scummvm-rg350-97bec43799aa85b9ef49e4e26016de95dd054e71.tar.gz scummvm-rg350-97bec43799aa85b9ef49e4e26016de95dd054e71.tar.bz2 scummvm-rg350-97bec43799aa85b9ef49e4e26016de95dd054e71.zip |
SHERLOCK: Minor comment updates
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/people.cpp | 2 | ||||
-rw-r--r-- | engines/sherlock/sherlock.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/engines/sherlock/people.cpp b/engines/sherlock/people.cpp index 8f7b957db6..9c264b4754 100644 --- a/engines/sherlock/people.cpp +++ b/engines/sherlock/people.cpp @@ -221,6 +221,8 @@ People::~People() { * Reset the player data */ void People::reset() { + // Note: The engine has theoretical support for two player charactersm but only the first one is used. + // Watson is, instead, handled by a different sprite in each scene, with a very simple initial movement, if any Sprite &p = _data[PLAYER]; p._description = "Sherlock Holmes!"; diff --git a/engines/sherlock/sherlock.cpp b/engines/sherlock/sherlock.cpp index 8b25615792..5a73b4fd1d 100644 --- a/engines/sherlock/sherlock.cpp +++ b/engines/sherlock/sherlock.cpp @@ -128,7 +128,7 @@ Common::Error SherlockEngine::run() { // Reset UI flags _ui->reset(); - // Reset the active characters to initially just Sherlock + // Reset the data for the player character (Sherlock) _people->reset(); // Initialize and load the scene. |