mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-24 05:17:17 +00:00
land selection depends on target geometry, not current
This commit is contained in:
parent
5ff14c3d16
commit
0e65ed894a
@ -593,8 +593,10 @@ eLand land_spheuc[LAND_SPHEUC] = {
|
|||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define LAND_SPHEUC ((weirdhyperbolic) ? LAND_OCT : (targetgeometry > 1) ? LAND_SPH : LAND_EUC)
|
#define tweirdhyperbolic (targetgeometry == gOctagon || targetgeometry == g45 || targetgeometry == g46 || targetgeometry == g47)
|
||||||
#define land_spheuc ((weirdhyperbolic) ? land_oct : (targetgeometry > 1) ? land_sph : land_euc)
|
|
||||||
|
#define LAND_SPHEUC ((tweirdhyperbolic) ? LAND_OCT : (targetgeometry > 1) ? LAND_SPH : LAND_EUC)
|
||||||
|
#define land_spheuc ((tweirdhyperbolic) ? land_oct : (targetgeometry > 1) ? land_sph : land_euc)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const char *curvenames[8] = {
|
const char *curvenames[8] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user