mirror of
https://github.com/glest/glest-source.git
synced 2025-08-16 13:23:59 +02:00
- code cleanup based on additional gcc warnings
This commit is contained in:
@@ -52,7 +52,7 @@ public:
|
||||
static uint64 getFlags() { return flags; }
|
||||
|
||||
static void setFlag(GlobalStaticFlagTypes flag) { flags |= flag; }
|
||||
static bool isFlagSet(GlobalStaticFlagTypes flag) { return (flags & (unsigned int)flag) == flag; }
|
||||
static bool isFlagSet(GlobalStaticFlagTypes flag) { return (flags & (unsigned int)flag) == (unsigned int)flag; }
|
||||
|
||||
protected:
|
||||
static bool isNonGraphicalMode;
|
||||
|
Reference in New Issue
Block a user