Bugfix in monster/util/flags.d

git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@40 ea6a568a-9f4f-0410-981a-c910a81bb256
actorid
nkorslund 17 years ago
parent b045938c85
commit 1cf6cb106f

@ -35,7 +35,7 @@ struct Flags(T)
{ flags ^= flags & t; }
bool has(T t)
{ return (flags & t) != t; }
{ return (flags & t) == t; }
bool hasAny(T t)
{ return (flags & t) != 0; }

Loading…
Cancel
Save