1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-03-07 13:59:44 +00:00

nicer model flag naming

This commit is contained in:
Zeno Rogue
2019-08-14 15:25:00 +02:00
parent 2693298825
commit 7f967ba30d
4 changed files with 11 additions and 7 deletions

View File

@@ -108,7 +108,7 @@ EX namespace polygonal {
#if HDR
inline bool mdAzimuthalEqui() { return among(pmodel, mdEquidistant, mdEquiarea, mdEquivolume); }
inline bool mdBandAny() { return among(pmodel, mdBand, mdBandEquidistant, mdBandEquiarea, mdSinusoidal, mdMollweide); }
inline bool mdBandAny() { return mdinf[pmodel].flags & mf::pseudoband; }
#endif
EX namespace models {