Added detection for Italian EGA version

svn-id: r30094
This commit is contained in:
Paul Gilbert 2007-12-31 05:55:20 +00:00
parent 1c88ab2c47
commit d45fe1e37e
3 changed files with 15 additions and 2 deletions

View file

@ -67,7 +67,19 @@ static const LureGameDescription gameDescriptions[] = {
{
{
"lure",
"",
"EGA",
AD_ENTRY1("disk1.ega", "b80aced0321f64c58df2c7d3d74dfe79"),
Common::IT_ITA,
Common::kPlatformPC,
Common::ADGF_NO_FLAGS
},
GF_FLOPPY | GF_EGA,
},
{
{
"lure",
"VGA",
AD_ENTRY1("disk1.vga", "cf69d5ada228dd74f89046691c16aafb"),
Common::IT_ITA,
Common::kPlatformPC,

View file

@ -81,7 +81,7 @@ public:
uint32 getFeatures() const;
Common::Language getLanguage() const;
Common::Platform getPlatform() const;
bool isEGA() const { return (getFeatures() & GF_EGA) != 0; }
};
} // End of namespace Lure

View file

@ -57,6 +57,7 @@ enum {
enum {
GF_FLOPPY = 1 << 0,
GF_EGA = 1 << 1,
GF_LNGUNK = 1 << 15
};