aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorFilippos Karapetis2009-10-04 13:29:35 +0000
committerFilippos Karapetis2009-10-04 13:29:35 +0000
commit3aadeaa01887d3044fd0a9ac50406e101cb73bb2 (patch)
tree34f1fb443443a195224bdeeb514660ca85f1f434 /engines/sci
parenta1e2ba1ba5c0c80b826522bdd4555508ad442b51 (diff)
downloadscummvm-rg350-3aadeaa01887d3044fd0a9ac50406e101cb73bb2.tar.gz
scummvm-rg350-3aadeaa01887d3044fd0a9ac50406e101cb73bb2.tar.bz2
scummvm-rg350-3aadeaa01887d3044fd0a9ac50406e101cb73bb2.zip
Removed unused enum
svn-id: r44605
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/gui/gui_helpers.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/engines/sci/gui/gui_helpers.h b/engines/sci/gui/gui_helpers.h
index 92008c9cfb..7859b68ff8 100644
--- a/engines/sci/gui/gui_helpers.h
+++ b/engines/sci/gui/gui_helpers.h
@@ -106,22 +106,6 @@ struct sciPalSched {
#define STUB(str) debug("STUB: '%s' at file %s line %d",str,__FILE__,__LINE__)
-// FIXME: The following feature enums and macros should be reconsidered.
-// The way they are done right now is highly error prone.
-
-enum {
- FTR_WINDOWMGR_SCI0 = (0<<0), // SCI0 based window manager
- FTR_WINDOWMGR_SCI1 = (1<<0), // SCI1 based window manager
- FTR_CAN_BEHERE = (0<<1), // Kernel77 is kCanBeHere (SCI0)
- FTR_CANT_BEHERE = (1<<1), // Kernel77 is kCantBeHere(SCI1)
- FTR_SOUND_SCI0 = (0<<2), // SCI0 Sound functions
- FTR_SOUND_SCI01 = (1<<2), // SCI0+ Sound functions
- FTR_SOUND_SCI1 = (2<<2), // SCI1 Sound functions
- FTR_SHOWPIC_SCI0 = (0<<4), // SCI0 ShowPic (44 effect codes)
- FTR_SHOWPIC_SCI1 = (1<<4), // SCI1 ShowPic (15 effect codes)
- FTR_GL_ANIMATE = (1<<5) // Animate can be paused by global flag
-};
-
#define GETFTR_WINDOWMGR(x) (x & 0x00000001)
#define GETFTR_CANBEHERE(x) (x & 0x00000002)
#define GETFTR_SOUND(x) (x & 0x0000000C)