home
·
contact
·
privacy
projects
/
plomrogue
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c89e7df
)
libplomrogue: Remove outcommented code.
author
Christian Heller
<c.heller@plomlompom.de>
Mon, 9 Mar 2015 00:32:46 +0000
(
01:32
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Mon, 9 Mar 2015 00:32:46 +0000
(
01:32
+0100)
libplomrogue.c
patch
|
blob
|
history
diff --git
a/libplomrogue.c
b/libplomrogue.c
index 384c81db0094fd512a5e2eb8b6e7407cea2926c5..4002dedefea35a17ffecb8f584b47493c9bd8984 100644
(file)
--- 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;
}