Minor cleanup; remove GF_10TH, it's not used or needed anywhere.

svn-id: r46978
This commit is contained in:
Matthew Hoops 2010-01-04 17:37:25 +00:00
parent 380190ee12
commit 8cc208ba2e
3 changed files with 8 additions and 9 deletions

View file

@ -625,7 +625,6 @@ ImageData* MystBitmap::decodeImage(Common::SeekableReadStream* stream) {
if (_info.colorsUsed == 0)
_info.colorsUsed = 256;
// TODO: Myst ME's Help.dat contains WDIB's with 24bpp color.
if (_info.bitsPerPixel != 8 && _info.bitsPerPixel != 24)
error("%dbpp Bitmaps not supported", _info.bitsPerPixel);

View file

@ -301,7 +301,7 @@ static const MohawkGameDescription gameDescriptions[] = {
Common::GUIO_NONE
},
GType_MYST,
GF_ME|GF_10TH,
GF_ME,
0,
},
@ -319,7 +319,7 @@ static const MohawkGameDescription gameDescriptions[] = {
Common::GUIO_NONE
},
GType_MYST,
GF_ME|GF_10TH,
GF_ME,
0,
},
@ -409,7 +409,7 @@ static const MohawkGameDescription gameDescriptions[] = {
Common::GUIO_NONE
},
GType_RIVEN,
GF_DVD|GF_10TH,
GF_DVD,
0,
},
@ -617,7 +617,7 @@ static const MohawkGameDescription gameDescriptions[] = {
0
},
// In The 1rst Degree
// In The 1st Degree
// French Windows
// From Strangerke
{

View file

@ -54,9 +54,8 @@ enum MohawkGameType {
enum MohawkGameFeatures {
GF_ME = (1 << 0), // Myst Masterpiece Edition
GF_DVD = (1 << 1),
GF_10TH = (1 << 2), // 10th Anniversary
GF_DEMO = (1 << 3),
GF_HASMIDI = (1 << 4)
GF_DEMO = (1 << 2),
GF_HASMIDI = (1 << 3)
};
struct MohawkGameDescription;
@ -93,10 +92,11 @@ public:
void pauseGame();
protected:
private:
PauseDialog *_pauseDialog;
void pauseEngineIntern(bool);
protected:
// An array holding the main Mohawk archives require by the games
Common::Array<MohawkFile *> _mhk;
};