1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-25 01:20:37 +00:00

heptacount counting

This commit is contained in:
Zeno Rogue 2017-12-14 02:52:18 +01:00
parent 36998c9a40
commit 45cc122927

View File

@ -66,7 +66,6 @@ template<class... T> auto iprintf(T... t) { for(int i=0; i<indent; i++) putchar(
// create a new heptagon // create a new heptagon
heptagon *buildHeptagon(heptagon *parent, int d, hstate s, int pard = 0, int fixdistance = COMPUTE) { heptagon *buildHeptagon(heptagon *parent, int d, hstate s, int pard = 0, int fixdistance = COMPUTE) {
heptagon *h = new heptagon; heptagon *h = new heptagon;
heptacount++;
h->alt = NULL; h->alt = NULL;
h->s = s; h->s = s;
for(int i=0; i<MAX_EDGE; i++) h->move[i] = NULL; for(int i=0; i<MAX_EDGE; i++) h->move[i] = NULL;