From: Christian Heller Date: Mon, 9 Mar 2015 00:32:46 +0000 (+0100) Subject: libplomrogue: Remove outcommented code. X-Git-Tag: tce~348 X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=commitdiff_plain;h=879f49462f91269c1b058eeb10da5a2878c4a01f libplomrogue: Remove outcommented code. --- diff --git a/libplomrogue.c b/libplomrogue.c index 384c81d..4002ded 100644 --- a/libplomrogue.c +++ b/libplomrogue.c @@ -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; }