aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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];