diff options
author | Johannes Schickel | 2007-01-28 23:24:16 +0000 |
---|---|---|
committer | Johannes Schickel | 2007-01-28 23:24:16 +0000 |
commit | 7da1a56387c8043affbbfd25a33baef3722ac03a (patch) | |
tree | d5af096db4da20ce0b6d5fa4a6d7b68be1fbf763 | |
parent | 27432a4dc13ec3f80eac61f17296aef5533e46bf (diff) | |
download | scummvm-rg350-7da1a56387c8043affbbfd25a33baef3722ac03a.tar.gz scummvm-rg350-7da1a56387c8043affbbfd25a33baef3722ac03a.tar.bz2 scummvm-rg350-7da1a56387c8043affbbfd25a33baef3722ac03a.zip |
Gregory's patch for bug #1645653 ("MSVC71 BUILD: Latest SVN doesn't compile").
svn-id: r25251
-rw-r--r-- | common/advancedDetector.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/common/advancedDetector.h b/common/advancedDetector.h index c5fc2f6ff6..ea10e53b4e 100644 --- a/common/advancedDetector.h +++ b/common/advancedDetector.h @@ -32,15 +32,15 @@ namespace Common { struct ADGameFileDescription { const char *fileName; - uint16 fileType; // Optional. Not used during detection, only by engines. - const char *md5; // Optional. May be NULL. - const int32 fileSize; // Optional. Set to -1 to ignore. + uint16 fileType; // Optional. Not used during detection, only by engines. + const char *md5; // Optional. May be NULL. + int32 fileSize; // Optional. Set to -1 to ignore. }; struct ADGameDescription { const char *gameid; const char *extra; - const ADGameFileDescription filesDescriptions[14]; + ADGameFileDescription filesDescriptions[14]; Language language; Platform platform; }; @@ -59,9 +59,9 @@ struct ADParams { // Pointer to ADGameDescription or its superset structure const byte *descs; // Size of that superset structure - const int descItemSize; + int descItemSize; // Number of bytes to compute MD5 sum for - const int md5Bytes; + int md5Bytes; // List of all engine targets const PlainGameDescriptor *list; // Structure for autoupgrading obsolete targets (optional) |