aboutsummaryrefslogtreecommitdiff
path: root/engines/made/made.h
diff options
context:
space:
mode:
authorFilippos Karapetis2008-04-23 18:22:06 +0000
committerFilippos Karapetis2008-04-23 18:22:06 +0000
commit1a6bd23780b46cdeb54372f0625545259358f84d (patch)
tree0e393d3fff155602b8a5ca80cd10e75362cfe24d /engines/made/made.h
parent347eb2dc0787df12c186882b215d1550cb2ea823 (diff)
downloadscummvm-rg350-1a6bd23780b46cdeb54372f0625545259358f84d.tar.gz
scummvm-rg350-1a6bd23780b46cdeb54372f0625545259358f84d.tar.bz2
scummvm-rg350-1a6bd23780b46cdeb54372f0625545259358f84d.zip
Removed file existence checks to determine game version and added game flags instead. Added the MD5 of the English floppy version of Return to Zork
svn-id: r31670
Diffstat (limited to 'engines/made/made.h')
-rw-r--r--engines/made/made.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/made/made.h b/engines/made/made.h
index 8c81df5d10..d897509d31 100644
--- a/engines/made/made.h
+++ b/engines/made/made.h
@@ -48,7 +48,10 @@
namespace Made {
enum MadeGameFeatures {
- GF_DEMO = 1 << 0
+ GF_DEMO = 1 << 0,
+ GF_CD = 1 << 1,
+ GF_CD_COMPRESSED = 1 << 2,
+ GF_FLOPPY = 1 << 3
};
struct MadeGameDescription;