X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=libplomrogue.c;h=4002dedefea35a17ffecb8f584b47493c9bd8984;hb=879f49462f91269c1b058eeb10da5a2878c4a01f;hp=384c81db0094fd512a5e2eb8b6e7407cea2926c5;hpb=c89e7df6e7b6b64037b5b964e10a63ad38f86eb5;p=plomrogue 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; }