diff options
| -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); | 
