1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-23 18:07:41 +00:00

CHANGED_VARIATION now considers 'pure' to be the default variation of the binary and Archimedean tilings

This commit is contained in:
Zeno Rogue
2018-08-29 21:19:52 +02:00
parent c06f01847c
commit d95fc4b8d4
3 changed files with 23 additions and 22 deletions

View File

@@ -138,7 +138,7 @@ void addMessage(string s, char spamtype = 0);
#define PURE (variation == eVariation::pure)
#define BITRUNCATED (variation == eVariation::bitruncated)
#define CHANGED_VARIATION (!BITRUNCATED)
#define CHANGED_VARIATION (variation != ginf[geometry].default_variation)
#define STDVAR (PURE || BITRUNCATED)
#define NONSTDVAR (!STDVAR)