Added detection for Italian EGA version
svn-id: r30094
This commit is contained in:
parent
1c88ab2c47
commit
d45fe1e37e
3 changed files with 15 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -57,6 +57,7 @@ enum {
|
|||
|
||||
enum {
|
||||
GF_FLOPPY = 1 << 0,
|
||||
GF_EGA = 1 << 1,
|
||||
GF_LNGUNK = 1 << 15
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue