aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
authorMax Horn2005-04-20 18:21:30 +0000
committerMax Horn2005-04-20 18:21:30 +0000
commitc46ea8bc407e60224500e6d6efa08d2ddd6f318e (patch)
tree4800c3beb69f0bfe6d1c6f456e8f5ea58780b6f6 /scumm/scumm.h
parenta18d4d5c2f6dbc985c5b3628228bb6078cf781bb (diff)
downloadscummvm-rg350-c46ea8bc407e60224500e6d6efa08d2ddd6f318e.tar.gz
scummvm-rg350-c46ea8bc407e60224500e6d6efa08d2ddd6f318e.tar.bz2
scummvm-rg350-c46ea8bc407e60224500e6d6efa08d2ddd6f318e.zip
Replaced the platform specific GF_FOO switches (using _platform instead now)
svn-id: r17716
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 016aa1d487..64b144e1a2 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -120,18 +120,8 @@ enum GameFeatures {
/** Games with multiple versions */
GF_MULTIPLE_VERSIONS = 1 << 13,
-#if 1
- // TODO: Remove this in favor of using _platform !
- GF_FMTOWNS = 1 << 14,
- GF_AMIGA = 1 << 15,
- GF_NES = 1 << 16,
- GF_ATARI_ST = 1 << 17,
- GF_MACINTOSH = 1 << 18,
- GF_PC = 1 << 19,
- GF_WINDOWS = 1 << 20,
-#endif
-
- GF_DEMO = 1 << 21
+ /** A demo, not a full blown game. */
+ GF_DEMO = 1 << 14
};
/* SCUMM Debug Channels */