home · contact · privacy
libplomrogue: Remove outcommented code.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 9 Mar 2015 00:32:46 +0000 (01:32 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 9 Mar 2015 00:32:46 +0000 (01:32 +0100)
libplomrogue.c

index 384c81db0094fd512a5e2eb8b6e7407cea2926c5..4002dedefea35a17ffecb8f584b47493c9bd8984 100644 (file)
@@ -448,20 +448,6 @@ extern uint8_t set_map_score(uint16_t pos, uint16_t score)
         return 1;
     }
     score_map[pos] = score;
-/*
-    uint32_t mup_size = maplength * maplength;
-    uint32_t pus;
-    FILE * file = fopen("test_set", "w");
-    for (pus = 0; pus < mup_size; pus++)
-    {
-        fprintf(file, "%d ", score_map[pus]);
-        if (0 == pus % maplength)
-        {
-            fprintf(file, "\n");
-        }
-    }
-    fclose(file);
-*/
     return 0;
 }