1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

fixed 'faces per vertex' display for gBinary4 and gTernary

This commit is contained in:
Zeno Rogue 2019-12-27 01:44:52 +01:00
parent 07bca8059d
commit 7d96ea9c54

View File

@ -611,8 +611,12 @@ EX void showEuclideanMenu() {
}
#endif
#if CAP_BT
else if(bt::in())
spf = "6,[6,7],7";
else if(bt::in()) switch(geometry) {
case gBinaryTiling: spf = "6,[6,7],7"; break;
case gBinary4: spf = "5,5,5[,5]"; break;
case gTernary: spf = "6,6,6[,6]"; break;
default: spf = "?"; break;
}
#endif
else if(BITRUNCATED)
spf = spf + "," + its(S6) + "," + its(S6);