1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-10 22:36:02 +00:00

removed the tohex parameter

This commit is contained in:
Zeno Rogue
2019-11-14 19:33:55 +01:00
parent decd30164d
commit 012d833f50
8 changed files with 22 additions and 21 deletions

View File

@@ -125,7 +125,7 @@ void set_relmatrices(cellinfo& ci) {
void rebase(cellinfo& ci) {
cell *cx = ci.owner;
virtualRebase(ci.owner, ci.p, false);
virtualRebase(ci.owner, ci.p);
if(ci.owner != cx) {
printf("rebased %p to %p\n", cx, ci.owner);
set_relmatrices(ci);
@@ -173,7 +173,7 @@ void bitruncate() {
s.neid.push_back(next);
s.neid.push_back(-1);
s.generation = bitruncations_performed + 1;
virtualRebase(s.owner, s.p, false);
virtualRebase(s.owner, s.p);
set_relmatrices(s);
}
}