diff options
author | Eugene Sandulenko | 2007-01-25 00:38:36 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-01-25 00:38:36 +0000 |
commit | 5f91f6d1e57522d45613865c8cb0d8398d3f7b07 (patch) | |
tree | 3abae7fd7a5d33b014de236beac13779ccbebc6d | |
parent | 6eb9f41e68a2eda945f7361cd05baa84a973d4d0 (diff) | |
download | scummvm-rg350-5f91f6d1e57522d45613865c8cb0d8398d3f7b07.tar.gz scummvm-rg350-5f91f6d1e57522d45613865c8cb0d8398d3f7b07.tar.bz2 scummvm-rg350-5f91f6d1e57522d45613865c8cb0d8398d3f7b07.zip |
Mention that some fields in ADGameFileDescription are optional.
In fact we really need to write some documentation for it.
svn-id: r25173
-rw-r--r-- | common/advancedDetector.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/advancedDetector.h b/common/advancedDetector.h index 60e763f969..84cfe8c17c 100644 --- a/common/advancedDetector.h +++ b/common/advancedDetector.h @@ -32,9 +32,9 @@ namespace Common { struct ADGameFileDescription { const char *fileName; - uint16 fileType; - const char *md5; - const int32 fileSize; + uint16 fileType; // Optional. Not used in detection, only be engines + const char *md5; // Optional could be NULL + const int32 fileSize; // Optional. Set to -1 to ignore }; struct ADGameDescription { |