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

renamed 'truncated' to 'chamfered'

This commit is contained in:
Zeno Rogue
2018-01-04 18:39:04 +01:00
parent f3cf1e06bf
commit 495dbba809
40 changed files with 351 additions and 351 deletions

View File

@@ -1201,7 +1201,7 @@ void checkStunKill(cell *dest);
void clearMessages();
void resetGeometry();
extern bool nontruncated;
extern bool nonchamfered;
namespace svg {
void circle(int x, int y, int size, int col);
@@ -2191,13 +2191,13 @@ struct hrmap {
struct hrmap_hyperbolic : hrmap {
heptagon *origin;
bool isnontruncated;
bool isnonchamfered;
hrmap_hyperbolic();
heptagon *getOrigin() { return origin; }
~hrmap_hyperbolic() {
DEBMEM ( verifycells(origin); )
// printf("Deleting hyperbolic map: %p\n", this);
dynamicval<bool> ph(nontruncated, isnontruncated);
dynamicval<bool> ph(nonchamfered, isnonchamfered);
clearfrom(origin);
}
void verify() { verifycells(origin); }
@@ -2431,7 +2431,7 @@ inline hyperpoint tC0(const transmatrix &T) {
transmatrix actualV(const heptspin& hs, const transmatrix& V);
transmatrix cview();
extern string truncatenames[2];
extern string chamfernames[2];
extern bool need_mouseh;
extern int whateveri, whateveri2;