diff options
| author | Eugene Sandulenko | 2009-07-07 17:11:29 +0000 | 
|---|---|---|
| committer | Eugene Sandulenko | 2009-07-07 17:11:29 +0000 | 
| commit | 9bdf1a2ab139d364ee30906a18dc05de8c88e487 (patch) | |
| tree | ecb4c0aef343ae7a560a4929cbc300f4bf92b5bb | |
| parent | ec2c7cfefa2daeb760cabbd7ded827377bb1121e (diff) | |
| download | scummvm-rg350-9bdf1a2ab139d364ee30906a18dc05de8c88e487.tar.gz scummvm-rg350-9bdf1a2ab139d364ee30906a18dc05de8c88e487.tar.bz2 scummvm-rg350-9bdf1a2ab139d364ee30906a18dc05de8c88e487.zip  | |
kFeatures800 -> kFeatures800x600 in order to have more meaningful name
svn-id: r42229
| -rw-r--r-- | engines/gob/detection.cpp | 4 | ||||
| -rw-r--r-- | engines/gob/gob.cpp | 4 | ||||
| -rw-r--r-- | engines/gob/gob.h | 4 | 
3 files changed, 6 insertions, 6 deletions
diff --git a/engines/gob/detection.cpp b/engines/gob/detection.cpp index d7018f349e..3827c3635c 100644 --- a/engines/gob/detection.cpp +++ b/engines/gob/detection.cpp @@ -3666,7 +3666,7 @@ static const GOBGameDescription gameDescriptions[] = {  			GUIO_NOSUBTITLES | GUIO_NOSPEECH  		},  		kGameTypeMagicStones, -		kFeatures800, +		kFeatures800x600,  		"ed4.stk", "main.obc", 0  	},  	{ @@ -4235,7 +4235,7 @@ static const GOBGameDescription fallbackDescs[] = {  			GUIO_NOSUBTITLES | GUIO_NOSPEECH  		},  		kGameTypeMagicStones, -		kFeatures800, +		kFeatures800x600,  		"ed4.stk", "main.obc", 0  	},  	{ diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index 5fe5971e8c..94255b1277 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -205,8 +205,8 @@ bool GobEngine::isBATDemo() const {  	return (_features & kFeaturesBATDemo) != 0;  } -bool GobEngine::is800() const { -	return (_features & kFeatures800) != 0; +bool GobEngine::is800x600() const { +	return (_features & kFeatures800x600) != 0;  }  bool GobEngine::isDemo() const { diff --git a/engines/gob/gob.h b/engines/gob/gob.h index aa87881b05..02f6af51bf 100644 --- a/engines/gob/gob.h +++ b/engines/gob/gob.h @@ -121,7 +121,7 @@ enum Features {  	kFeatures640     = 1 << 3,  	kFeaturesSCNDemo = 1 << 4,  	kFeaturesBATDemo = 1 << 5, -	kFeatures800     = 1 << 6 +	kFeatures800x600     = 1 << 6  };  enum { @@ -218,7 +218,7 @@ public:  	bool hasAdlib() const;  	bool isSCNDemo() const;  	bool isBATDemo() const; -	bool is800() const; +	bool is800x600() const;  	bool isDemo() const;  	GobEngine(OSystem *syst);  | 
