SHERLOCK: More comment fixes

This commit is contained in:
Paul Gilbert 2015-05-09 10:01:36 -04:00
parent ccb8c03737
commit c85b14b402
3 changed files with 4 additions and 4 deletions

View File

@ -40,4 +40,4 @@ static const SherlockGameDescription gameDescriptions[] = {
{ AD_TABLE_END_MARKER, (GameType)0 }
};
} // End of namespace MADS
} // End of namespace Sherlock

View File

@ -296,4 +296,4 @@ bool Events::checkInput() {
return kbHit() || _pressed || _released || _rightPressed || _rightReleased;
}
} // End of namespace MADS
} // End of namespace Sherlock

View File

@ -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];