aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock
diff options
context:
space:
mode:
authorPaul Gilbert2015-05-09 10:01:36 -0400
committerPaul Gilbert2015-05-09 10:01:36 -0400
commitc85b14b402ef03757c0a5ab320d8c0ef6dba5483 (patch)
tree96d18623c131796dfffb210c8f59e082debec86b /engines/sherlock
parentccb8c03737ef04dc7ec964cba3516652def3d077 (diff)
downloadscummvm-rg350-c85b14b402ef03757c0a5ab320d8c0ef6dba5483.tar.gz
scummvm-rg350-c85b14b402ef03757c0a5ab320d8c0ef6dba5483.tar.bz2
scummvm-rg350-c85b14b402ef03757c0a5ab320d8c0ef6dba5483.zip
SHERLOCK: More comment fixes
Diffstat (limited to 'engines/sherlock')
-rw-r--r--engines/sherlock/detection_tables.h2
-rw-r--r--engines/sherlock/events.cpp2
-rw-r--r--engines/sherlock/objects.h4
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];