1
0
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:
Zeno Rogue
2019-09-13 19:50:12 +02:00
parent 90baab83eb
commit 8833251c8b
4 changed files with 16 additions and 0 deletions

View File

@@ -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;