mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-12-21 13:28:05 +00:00
added some missing CAP_SOLV guards
This commit is contained in:
2
cell.cpp
2
cell.cpp
@@ -913,7 +913,9 @@ EX int heptdistance(heptagon *h1, heptagon *h2) {
|
||||
#if CAP_CRYSTAL
|
||||
if(cryst) return crystal::space_distance(h1->c7, h2->c7);
|
||||
#endif
|
||||
#if CAP_SOLV
|
||||
if(sol) return solv::approx_distance(h1, h2);
|
||||
#endif
|
||||
while(true) {
|
||||
if(h1 == h2) return d;
|
||||
for(int i=0; i<S7; i++) if(h1->move(i) == h2) return d + 1;
|
||||
|
||||
Reference in New Issue
Block a user