cleanup of unnecessarily convoluted function call
[rocksndiamonds.git] / src / game_bd / bd_elements.h
index 34945ec73b6e295a0c15646209bb785b40f6ca9f..446dfc2d385c029ba2202b843a30ab6ad020d14b 100644 (file)
@@ -279,6 +279,8 @@ typedef enum _element
   O_COVERED,
   O_PLAYER_LEFT,
   O_PLAYER_RIGHT,
+  O_PLAYER_UP,
+  O_PLAYER_DOWN,
   O_PLAYER_TAP,
   O_PLAYER_BLINK,
   O_PLAYER_TAP_BLINK,
@@ -317,10 +319,9 @@ typedef enum _element
 
   SCANNED = 0x100,
   COVERED = 0x200,
-  SKIPPED = 0x400,
 
   // binary AND this to elements to get rid of properties above.
-  O_MASK = ~(SCANNED | COVERED | SKIPPED)
+  O_MASK = ~(SCANNED | COVERED)
 } GdElement;
 
 typedef enum _sound