mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-29 19:40:35 +00:00
improved ISMINI; always_false
This commit is contained in:
parent
e44de82394
commit
183b267d64
9
hyper.h
9
hyper.h
@ -11,6 +11,11 @@
|
|||||||
|
|
||||||
namespace hr {
|
namespace hr {
|
||||||
|
|
||||||
|
struct always_false {
|
||||||
|
operator bool() const { return false; };
|
||||||
|
void operator = (bool b) const {};
|
||||||
|
};
|
||||||
|
|
||||||
template<class T>
|
template<class T>
|
||||||
void ignore(T&&) {
|
void ignore(T&&) {
|
||||||
// placate GCC's overzealous -Wunused-result
|
// placate GCC's overzealous -Wunused-result
|
||||||
@ -2273,6 +2278,10 @@ namespace tour {
|
|||||||
|
|
||||||
extern hookset<void(int)> *hooks_slide;
|
extern hookset<void(int)> *hooks_slide;
|
||||||
};
|
};
|
||||||
|
#else
|
||||||
|
namespace tour {
|
||||||
|
static const always_false on;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern bool doCross;
|
extern bool doCross;
|
||||||
|
@ -77,15 +77,15 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CAP_ANIMATIONS
|
#ifndef CAP_ANIMATIONS
|
||||||
#define CAP_ANIMATIONS (!CAP_MINI)
|
#define CAP_ANIMATIONS (!ISMINI)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CAP_FILES
|
#ifndef CAP_FILES
|
||||||
#define CAP_FILES 1
|
#define CAP_FILES (!ISMINI)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CAP_INV
|
#ifndef CAP_INV
|
||||||
#define CAP_INV 1
|
#define CAP_INV (!ISMINI)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CAP_ANDROIDSHARE
|
#ifndef CAP_ANDROIDSHARE
|
||||||
@ -197,7 +197,7 @@
|
|||||||
#define CAP_SDLAUDIO (CAP_SDL && CAP_AUDIO)
|
#define CAP_SDLAUDIO (CAP_SDL && CAP_AUDIO)
|
||||||
|
|
||||||
#ifndef CAP_SVG
|
#ifndef CAP_SVG
|
||||||
#define CAP_SVG (!ISMOBILE)
|
#define CAP_SVG (CAP_FILES && !ISMOBILE && !ISMINI)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CAP_POLY
|
#ifndef CAP_POLY
|
||||||
|
Loading…
Reference in New Issue
Block a user