- code cleanup based on additional gcc warnings

This commit is contained in:
Mark Vejvoda
2013-11-19 06:24:22 +00:00
parent 9268aaf279
commit 4a4c7fbfde
2 changed files with 6 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ public:
static uint64 getFlags() { return flags; }
static void setFlag(GlobalStaticFlagTypes flag) { flags |= flag; }
static bool isFlagSet(GlobalStaticFlagTypes flag) { return (flags & flag) == flag; }
static bool isFlagSet(GlobalStaticFlagTypes flag) { return (flags & (unsigned int)flag) == flag; }
protected:
static bool isNonGraphicalMode;