1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-14 12:47:10 +00:00

added some missing MAXMDIM guards

This commit is contained in:
Zeno Rogue
2020-05-31 17:21:16 +02:00
parent b4687213c3
commit a8a0805b6f
6 changed files with 27 additions and 1 deletions

View File

@@ -997,7 +997,10 @@ EX ld spherity(const transmatrix& V) {
}
EX bool confusingGeometry() {
return quotient || elliptic || reg3::ultra_mirror_in() || (fake::in() && fake::multiple);
#if MAXMDIM
if(reg3::ultra_mirror_in()) return true;
#endif
return quotient || elliptic || (fake::in() && fake::multiple);
}
EX ld master_to_c7_angle() {