1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-17 11:38:05 +00:00

lots of work on the new geometries

This commit is contained in:
Zeno Rogue
2017-10-29 01:57:34 +02:00
parent ac37df87a5
commit 016ade10c6
21 changed files with 876 additions and 443 deletions

View File

@@ -774,6 +774,14 @@ void describeMouseover() {
if(isWarped(c))
help += s0 + "\n\n" + warpdesc;
}
if(c && c->master->alt) {
char buf[100];
sprintf(buf, " [alt=%p]", c->master->alt->alt);
out += " ALT " + its(celldistAlt(c));
out += buf;
}
#if CAP_ROGUEVIZ
rogueviz::describe(c);