[Scummvm-cvs-logs] SF.net SVN: scummvm:[42229] scummvm/trunk/engines/gob

sev at users.sourceforge.net sev at users.sourceforge.net
Tue Jul 7 19:11:29 CEST 2009


Revision: 42229
          http://scummvm.svn.sourceforge.net/scummvm/?rev=42229&view=rev
Author:   sev
Date:     2009-07-07 17:11:29 +0000 (Tue, 07 Jul 2009)

Log Message:
-----------
kFeatures800 -> kFeatures800x600 in order to have more meaningful name

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

Modified: scummvm/trunk/engines/gob/detection.cpp
===================================================================
--- scummvm/trunk/engines/gob/detection.cpp	2009-07-07 15:39:18 UTC (rev 42228)
+++ scummvm/trunk/engines/gob/detection.cpp	2009-07-07 17:11:29 UTC (rev 42229)
@@ -3666,7 +3666,7 @@
 			GUIO_NOSUBTITLES | GUIO_NOSPEECH
 		},
 		kGameTypeMagicStones,
-		kFeatures800,
+		kFeatures800x600,
 		"ed4.stk", "main.obc", 0
 	},
 	{
@@ -4235,7 +4235,7 @@
 			GUIO_NOSUBTITLES | GUIO_NOSPEECH
 		},
 		kGameTypeMagicStones,
-		kFeatures800,
+		kFeatures800x600,
 		"ed4.stk", "main.obc", 0
 	},
 	{

Modified: scummvm/trunk/engines/gob/gob.cpp
===================================================================
--- scummvm/trunk/engines/gob/gob.cpp	2009-07-07 15:39:18 UTC (rev 42228)
+++ scummvm/trunk/engines/gob/gob.cpp	2009-07-07 17:11:29 UTC (rev 42229)
@@ -205,8 +205,8 @@
 	return (_features & kFeaturesBATDemo) != 0;
 }
 
-bool GobEngine::is800() const {
-	return (_features & kFeatures800) != 0;
+bool GobEngine::is800x600() const {
+	return (_features & kFeatures800x600) != 0;
 }
 
 bool GobEngine::isDemo() const {

Modified: scummvm/trunk/engines/gob/gob.h
===================================================================
--- scummvm/trunk/engines/gob/gob.h	2009-07-07 15:39:18 UTC (rev 42228)
+++ scummvm/trunk/engines/gob/gob.h	2009-07-07 17:11:29 UTC (rev 42229)
@@ -121,7 +121,7 @@
 	kFeatures640     = 1 << 3,
 	kFeaturesSCNDemo = 1 << 4,
 	kFeaturesBATDemo = 1 << 5,
-	kFeatures800     = 1 << 6
+	kFeatures800x600     = 1 << 6
 };
 
 enum {
@@ -218,7 +218,7 @@
 	bool hasAdlib() const;
 	bool isSCNDemo() const;
 	bool isBATDemo() const;
-	bool is800() const;
+	bool is800x600() const;
 	bool isDemo() const;
 
 	GobEngine(OSystem *syst);


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