[Scummvm-cvs-logs] SF.net SVN: scummvm: [25251] scummvm/trunk/common/advancedDetector.h

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Mon Jan 29 00:24:16 CET 2007


Revision: 25251
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25251&view=rev
Author:   lordhoto
Date:     2007-01-28 15:24:16 -0800 (Sun, 28 Jan 2007)

Log Message:
-----------
Gregory's patch for bug #1645653 ("MSVC71 BUILD: Latest SVN doesn't compile").

Modified Paths:
--------------
    scummvm/trunk/common/advancedDetector.h

Modified: scummvm/trunk/common/advancedDetector.h
===================================================================
--- scummvm/trunk/common/advancedDetector.h	2007-01-28 20:11:31 UTC (rev 25250)
+++ scummvm/trunk/common/advancedDetector.h	2007-01-28 23:24:16 UTC (rev 25251)
@@ -32,15 +32,15 @@
 
 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 @@
 	// 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)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list