[Scummvm-cvs-logs] SF.net SVN: scummvm: [30094] scummvm/trunk/engines/lure

dreammaster at users.sourceforge.net dreammaster at users.sourceforge.net
Mon Dec 31 06:55:20 CET 2007


Revision: 30094
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30094&view=rev
Author:   dreammaster
Date:     2007-12-30 21:55:20 -0800 (Sun, 30 Dec 2007)

Log Message:
-----------
Added detection for Italian EGA version

Modified Paths:
--------------
    scummvm/trunk/engines/lure/detection.cpp
    scummvm/trunk/engines/lure/lure.h
    scummvm/trunk/engines/lure/luredefs.h

Modified: scummvm/trunk/engines/lure/detection.cpp
===================================================================
--- scummvm/trunk/engines/lure/detection.cpp	2007-12-31 01:50:18 UTC (rev 30093)
+++ scummvm/trunk/engines/lure/detection.cpp	2007-12-31 05:55:20 UTC (rev 30094)
@@ -67,7 +67,19 @@
 	{
 		{
 			"lure",
-			"",
+			"EGA",
+			AD_ENTRY1("disk1.ega", "b80aced0321f64c58df2c7d3d74dfe79"),
+			Common::IT_ITA,
+			Common::kPlatformPC,
+			Common::ADGF_NO_FLAGS
+		},
+		GF_FLOPPY | GF_EGA,
+	},
+
+	{
+		{
+			"lure",
+			"VGA",
 			AD_ENTRY1("disk1.vga", "cf69d5ada228dd74f89046691c16aafb"),
 			Common::IT_ITA,
 			Common::kPlatformPC,

Modified: scummvm/trunk/engines/lure/lure.h
===================================================================
--- scummvm/trunk/engines/lure/lure.h	2007-12-31 01:50:18 UTC (rev 30093)
+++ scummvm/trunk/engines/lure/lure.h	2007-12-31 05:55:20 UTC (rev 30094)
@@ -81,7 +81,7 @@
 	uint32 getFeatures() const;
 	Common::Language getLanguage() const;
 	Common::Platform getPlatform() const;
-
+	bool isEGA() const { return (getFeatures() & GF_EGA) != 0; }
 };
 
 } // End of namespace Lure

Modified: scummvm/trunk/engines/lure/luredefs.h
===================================================================
--- scummvm/trunk/engines/lure/luredefs.h	2007-12-31 01:50:18 UTC (rev 30093)
+++ scummvm/trunk/engines/lure/luredefs.h	2007-12-31 05:55:20 UTC (rev 30094)
@@ -57,6 +57,7 @@
 
 enum {
 	GF_FLOPPY	= 1 <<  0,
+	GF_EGA		= 1 <<  1,
 	GF_LNGUNK	= 1 << 15
 };
 


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