diff options
| author | Paul Gilbert | 2015-05-09 10:01:36 -0400 | 
|---|---|---|
| committer | Paul Gilbert | 2015-05-09 10:01:36 -0400 | 
| commit | c85b14b402ef03757c0a5ab320d8c0ef6dba5483 (patch) | |
| tree | 96d18623c131796dfffb210c8f59e082debec86b | |
| parent | ccb8c03737ef04dc7ec964cba3516652def3d077 (diff) | |
| download | scummvm-rg350-c85b14b402ef03757c0a5ab320d8c0ef6dba5483.tar.gz scummvm-rg350-c85b14b402ef03757c0a5ab320d8c0ef6dba5483.tar.bz2 scummvm-rg350-c85b14b402ef03757c0a5ab320d8c0ef6dba5483.zip | |
SHERLOCK: More comment fixes
| -rw-r--r-- | engines/sherlock/detection_tables.h | 2 | ||||
| -rw-r--r-- | engines/sherlock/events.cpp | 2 | ||||
| -rw-r--r-- | engines/sherlock/objects.h | 4 | 
3 files changed, 4 insertions, 4 deletions
| diff --git a/engines/sherlock/detection_tables.h b/engines/sherlock/detection_tables.h index 8f17e8f8ea..b369868741 100644 --- a/engines/sherlock/detection_tables.h +++ b/engines/sherlock/detection_tables.h @@ -40,4 +40,4 @@ static const SherlockGameDescription gameDescriptions[] = {  	{ AD_TABLE_END_MARKER, (GameType)0 }  }; -} // End of namespace MADS +} // End of namespace Sherlock diff --git a/engines/sherlock/events.cpp b/engines/sherlock/events.cpp index 4e3f81e588..1bc2e64f6e 100644 --- a/engines/sherlock/events.cpp +++ b/engines/sherlock/events.cpp @@ -296,4 +296,4 @@ bool Events::checkInput() {  	return kbHit() || _pressed || _released || _rightPressed || _rightReleased;  } -} // End of namespace MADS +} // End of namespace Sherlock diff --git a/engines/sherlock/objects.h b/engines/sherlock/objects.h index 861858c58e..f6ad6beb0d 100644 --- a/engines/sherlock/objects.h +++ b/engines/sherlock/objects.h @@ -145,7 +145,7 @@ enum { REVERSE_DIRECTION = 0x80 };  struct ActionType {  	int _cAnimNum; -	int _cAnimSpeed;				// if high bit set, play in reverse +	int _cAnimSpeed;  	Common::String _names[4];  	void synchronize(Common::SeekableReadStream &s); @@ -153,7 +153,7 @@ struct ActionType {  struct UseType {  	int _cAnimNum; -	int _cAnimSpeed;				// if high bit set, play in reverse +	int _cAnimSpeed;  	Common::String _names[4];  	int _useFlag;					// Which flag USE will set (if any)  	int _dFlag[1]; | 
