diff --git a/generators/patterngen.cpp b/generators/patterngen.cpp index 5d8c78e0..a57694e3 100644 --- a/generators/patterngen.cpp +++ b/generators/patterngen.cpp @@ -444,5 +444,17 @@ void buildAutomatonRule(cell *c) { } } +/* + to drawcell: + if(c->type == 6 && c->tmp > 0) { + int i = c->tmp; + zebra(cellwalker(c, i&15), 1, i>>4, "", 0); + } + + c->item = eItem(c->heat / 4); + buildAutomatonRule(c); +#endif +*/ + // #define BUILDZEBRA } diff --git a/graph.cpp b/graph.cpp index 1660bc5e..8d5ba20f 100644 --- a/graph.cpp +++ b/graph.cpp @@ -5172,16 +5172,6 @@ EX void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) { else if(dist0 < vid.middetail) detaillevel = 1; else detaillevel = 0; -#ifdef BUILDZEBRA - if(c->type == 6 && c->tmp > 0) { - int i = c->tmp; - zebra(cellwalker(c, i&15), 1, i>>4, "", 0); - } - - c->item = eItem(c->heat / 4); - buildAutomatonRule(c); -#endif - #if CAP_SHAPES viewBuggyCells(c,V); #endif