aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.h
diff options
context:
space:
mode:
authorMax Horn2009-05-14 11:30:21 +0000
committerMax Horn2009-05-14 11:30:21 +0000
commitb3ace666d0744f54886645b8b8f30f2bffc27a63 (patch)
tree975c0923d3660168fd87826d36232e2cc843a354 /engines/sci/sci.h
parentf64df361e0fa786e34092060ee8caa73440f5336 (diff)
downloadscummvm-rg350-b3ace666d0744f54886645b8b8f30f2bffc27a63.tar.gz
scummvm-rg350-b3ace666d0744f54886645b8b8f30f2bffc27a63.tar.bz2
scummvm-rg350-b3ace666d0744f54886645b8b8f30f2bffc27a63.zip
SCI: Renamed GF_SCI0_BEFORE_* macros to GF_FOR_SCI0_BEFORE_* (to emphasise that those are not Game Features); also moved their definitions into detection.cpp, to minimize the risk that they are accidentally used by other code
svn-id: r40557
Diffstat (limited to 'engines/sci/sci.h')
-rw-r--r--engines/sci/sci.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/sci/sci.h b/engines/sci/sci.h
index 79246af479..6e44bf1650 100644
--- a/engines/sci/sci.h
+++ b/engines/sci/sci.h
@@ -127,11 +127,6 @@ enum SciGameFlags {
GF_SCI1_NEWSETCURSOR = (1 << 5)
};
-// The 4 SCI0 engine generations (pre-395, pre-502, pre-629 and post-629)
-#define GF_SCI0_BEFORE_395 (GF_SCI0_OLD | GF_SCI0_OLDGFXFUNCS | GF_SCI0_OLDGETTIME)
-#define GF_SCI0_BEFORE_502 (GF_SCI0_OLDGFXFUNCS | GF_SCI0_OLDGETTIME)
-#define GF_SCI0_BEFORE_629 GF_SCI0_OLDGETTIME
-
class SciEngine : public Engine {
public:
SciEngine(OSystem *syst, const SciGameDescription *desc);