rnd-20050220-1-src
authorHolger Schemel <info@artsoft.org>
Sun, 20 Feb 2005 03:23:59 +0000 (04:23 +0100)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Aug 2014 08:48:50 +0000 (10:48 +0200)
src/conf_gfx.c
src/conftime.h
src/game_em/convert.c

index 244b2940e82b30990f4e9538b3c4450a86cd3498..a5e835ab9f8b5319487f7814f55c846c32650ede 100644 (file)
@@ -3311,7 +3311,6 @@ struct ConfigInfo image_config[] =
   { "emc_gate_5_gray.EDITOR",                  "RocksEMC.pcx"          },
   { "emc_gate_5_gray.EDITOR.xpos",             "0"                     },
   { "emc_gate_5_gray.EDITOR.ypos",             "7"                     },
-  { "emc_gate_5_gray.EDITOR.frames",           "1"                     },
   { "emc_gate_6",                              "RocksEMC.pcx"          },
   { "emc_gate_6.xpos",                         "1"                     },
   { "emc_gate_6.ypos",                         "6"                     },
@@ -3323,7 +3322,6 @@ struct ConfigInfo image_config[] =
   { "emc_gate_6_gray.EDITOR",                  "RocksEMC.pcx"          },
   { "emc_gate_6_gray.EDITOR.xpos",             "1"                     },
   { "emc_gate_6_gray.EDITOR.ypos",             "7"                     },
-  { "emc_gate_6_gray.EDITOR.frames",           "1"                     },
   { "emc_gate_7",                              "RocksEMC.pcx"          },
   { "emc_gate_7.xpos",                         "2"                     },
   { "emc_gate_7.ypos",                         "6"                     },
@@ -3335,7 +3333,6 @@ struct ConfigInfo image_config[] =
   { "emc_gate_7_gray.EDITOR",                  "RocksEMC.pcx"          },
   { "emc_gate_7_gray.EDITOR.xpos",             "2"                     },
   { "emc_gate_7_gray.EDITOR.ypos",             "7"                     },
-  { "emc_gate_7_gray.EDITOR.frames",           "1"                     },
   { "emc_gate_8",                              "RocksEMC.pcx"          },
   { "emc_gate_8.xpos",                         "3"                     },
   { "emc_gate_8.ypos",                         "6"                     },
@@ -3347,7 +3344,6 @@ struct ConfigInfo image_config[] =
   { "emc_gate_8_gray.EDITOR",                  "RocksEMC.pcx"          },
   { "emc_gate_8_gray.EDITOR.xpos",             "3"                     },
   { "emc_gate_8_gray.EDITOR.ypos",             "7"                     },
-  { "emc_gate_8_gray.EDITOR.frames",           "1"                     },
 
   { "emc_android",                             "emc_object.pcx"        },
   { "emc_android.xpos",                                "7"                     },
@@ -3561,7 +3557,6 @@ struct ConfigInfo image_config[] =
   { "emc_dripper.EDITOR",                      "emc_object.pcx"        },
   { "emc_dripper.EDITOR.xpos",                 "25"                    },
   { "emc_dripper.EDITOR.ypos",                 "15"                    },
-  { "emc_dripper.EDITOR.frames",               "1"                     },
   { "emc_dripper.EDITOR.scale_up_factor",      "2"                     },
   { "emc_dripper.active",                      "emc_object.pcx"        },
   { "emc_dripper.active.xpos",                 "25"                    },
index feafd9670295da7662ddeb8eb79859e8e53dc0ec..af5496e0d0de4b4bac96ae99f97497670fa4dd1e 100644 (file)
@@ -1 +1 @@
-#define COMPILE_DATE_STRING "[2005-02-19 02:22]"
+#define COMPILE_DATE_STRING "[2005-02-20 00:31]"
index 8bcf586d98449bda6e45b4f00a8da257d0922f1a..dc5d78c6926caf01bd93469fa1221b7a42ceda8b 100644 (file)
@@ -213,13 +213,13 @@ int cleanup_em_level(unsigned char *src, int length)
   /* fix acid */
   for (i = 64; i < 2048; i++)
   {
-    if (src[i] == 63)
+    if (src[i] == 63)          /* 'Xacid_s' (acid pool, bottom middle) */
     {
       if (file_version == FILE_VERSION_EM_V4 &&
          i < 2048 - 64 && src[i + 64] == 63)
-       src[i - 64] = 255;
+       src[i - 64] = 255;      /* replace element above with 'Xfake_acid_1' */
       else
-       src[i - 64] = 101;
+       src[i - 64] = 101;      /* replace element above with 'Xacid_1' */
     }
   }
 #endif