1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 16:37:40 +00:00

'remove faraway cells from the memory' option

This commit is contained in:
Zeno Rogue
2018-01-25 19:49:19 +01:00
parent 91a07dd856
commit 8713d34d19
12 changed files with 58 additions and 6 deletions

View File

@@ -165,7 +165,7 @@ struct heptagon {
int fieldval;
// evolution data
short rval0, rval1;
struct cdata *cdata;
struct cdata *cdata; // for alts, this contains the pointer to the original
// central cell
cell *c7;
// associated generator of alternate structure, for Camelot and horocycles
@@ -2492,3 +2492,6 @@ void mainloop();
void clearAnimations();
transmatrix rotmatrix(double rotation, int c0, int c1);
void destroycellcontents(cell *c);
extern heptagon *last_cleared;