rnd-20040418-1-src
authorHolger Schemel <info@artsoft.org>
Sun, 18 Apr 2004 09:11:38 +0000 (11:11 +0200)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Aug 2014 08:46:56 +0000 (10:46 +0200)
src/conftime.h
src/game.c

index ac82660fa1fb49490beb96cbbb352573f909833a..b334e9456b45d1520f1db2905eddbb1ae94d5f83 100644 (file)
@@ -1 +1 @@
-#define COMPILE_DATE_STRING "[2004-04-12 20:40]"
+#define COMPILE_DATE_STRING "[2004-04-12 23:15]"
index da15ed4347c34702f528c58a250e241f7913496a..971392310efdb466f512b7611fd3b53471c99cbb 100644 (file)
@@ -5222,6 +5222,7 @@ void StartMoving(int x, int y)
     int move_pattern = element_info[element].move_pattern;
     int newx, newy;
 
+#if 0
 #if DEBUG
     if (MovDir[x][y] == MV_NO_MOVING)
     {
@@ -5229,6 +5230,7 @@ void StartMoving(int x, int y)
             x, y, element, element_info[element].token_name);
       printf("StartMoving(): This should never happen!\n");
     }
+#endif
 #endif
 
     Moving2Blocked(x, y, &newx, &newy);
@@ -5825,6 +5827,7 @@ void StartMoving(int x, int y)
 
       TurnRound(x, y);
 
+#if 0
       if (move_pattern & MV_ANY_DIRECTION &&
          move_pattern == MovDir[x][y])
       {
@@ -5843,6 +5846,7 @@ void StartMoving(int x, int y)
 
        element = Feld[x][y];   /* element might have changed */
       }
+#endif
 
 #if 1
       if (GFX_ELEMENT(element) != EL_SAND)     /* !!! FIX THIS (crumble) !!! */
@@ -6117,10 +6121,14 @@ void ContinueMoving(int x, int y)
   if (pushed_by_conveyor && CAN_FALL(element) &&
       direction & MV_HORIZONTAL)
   {
+#if 0
     if (CAN_MOVE(element))
       InitMovDir(newx, newy);
     else
       MovDir[newx][newy] = 0;
+#else
+    MovDir[newx][newy] = 0;
+#endif
   }
 #endif