[Scummvm-cvs-logs] SF.net SVN: scummvm:[44605] scummvm/trunk/engines/sci/gui/gui_helpers.h

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sun Oct 4 15:29:35 CEST 2009


Revision: 44605
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44605&view=rev
Author:   thebluegr
Date:     2009-10-04 13:29:35 +0000 (Sun, 04 Oct 2009)

Log Message:
-----------
Removed unused enum

Modified Paths:
--------------
    scummvm/trunk/engines/sci/gui/gui_helpers.h

Modified: scummvm/trunk/engines/sci/gui/gui_helpers.h
===================================================================
--- scummvm/trunk/engines/sci/gui/gui_helpers.h	2009-10-04 11:59:29 UTC (rev 44604)
+++ scummvm/trunk/engines/sci/gui/gui_helpers.h	2009-10-04 13:29:35 UTC (rev 44605)
@@ -106,22 +106,6 @@
 #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)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list