1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-01 02:07:57 +00:00

instead of nonbitrunc, gp::on and irr::on, there is one variable, variation

This commit is contained in:
Zeno Rogue
2018-08-28 17:17:34 +02:00
parent 1af2c04407
commit 6de0f0a8aa
43 changed files with 691 additions and 678 deletions

View File

@@ -40,7 +40,7 @@ void slow_delete_cell(cell *c) {
void delete_heptagon(heptagon *h2) {
cell *c = h2->c7;
if(!nonbitrunc) {
if(BITRUNCATED) {
for(int i=0; i<c->type; i++)
if(c->move(i))
slow_delete_cell(c->move(i));
@@ -84,7 +84,7 @@ bool unsafeLand(cell *c) {
}
void save_memory() {
if(quotient || !hyperbolic) return;
if(quotient || !hyperbolic || NONSTDVAR) return;
if(!memory_saving_mode) return;
if(unsafeLand(cwt.at)) return;
int d = celldist(cwt.at);