kFeatures800 -> kFeatures800x600 in order to have more meaningful name

svn-id: r42229
This commit is contained in:
Eugene Sandulenko 2009-07-07 17:11:29 +00:00
parent ec2c7cfefa
commit 9bdf1a2ab1
3 changed files with 6 additions and 6 deletions

View File

@ -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
},
{

View File

@ -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 {

View File

@ -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);