- code cleanup based on additional gcc warnings

This commit is contained in:
Mark Vejvoda
2013-11-19 06:29:30 +00:00
parent 4a4c7fbfde
commit 39b41cdfea
2 changed files with 30 additions and 26 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 & (unsigned int)flag) == flag; }
static bool isFlagSet(GlobalStaticFlagTypes flag) { return (flags & (unsigned int)flag) == (unsigned int)flag; }
protected:
static bool isNonGraphicalMode;