rnd-20060306-1-src
authorHolger Schemel <info@artsoft.org>
Mon, 6 Mar 2006 12:34:35 +0000 (13:34 +0100)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Aug 2014 08:51:03 +0000 (10:51 +0200)
* fixed bug with missing (zero) score values for native Supaplex levels

ChangeLog
src/conftime.h
src/files.c

index 36366f1016c0d6786d9dfaf9494bc5e2aacf5997..b9b13f226113c978550e5b6593a5b83041c75958 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2006-03-06
+       * fixed bug with missing (zero) score values for native Supaplex levels
+
 2006-03-05
        * added "continuous snapping" (snapping many elements while holding the
          snap key pressed, without releasing the snap key after each element)
index 02bdb45e295349ab867ec7fd61e8dccd49a90ae5..828034f91f92520020a5dbc8f1baf7dae432b991 100644 (file)
@@ -1 +1 @@
-#define COMPILE_DATE_STRING "[2006-03-05 13:50]"
+#define COMPILE_DATE_STRING "[2006-03-06 13:34]"
index c2b9d0e0c116f2f00422b1b2f910da7b3ce1d9e2..eccd265d3b20fcce99a6196c85e101c6a5846cc8 100644 (file)
@@ -2980,8 +2980,12 @@ static void LoadLevelFromFileStream_SP(FILE *file, struct LevelInfo *level,
   level->time_wheel = 0;
   level->amoeba_content = EL_EMPTY;
 
+#if 1
+  /* original Supaplex does not use score values -- use default values */
+#else
   for (i = 0; i < LEVEL_SCORE_ELEMENTS; i++)
     level->score[i] = 0;               /* !!! CORRECT THIS !!! */
+#endif
 
   /* there are no yamyams in supaplex levels */
   for (i = 0; i < level->num_yamyam_contents; i++)