1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 22:45:34 +00:00

Bugfix in monster/util/flags.d

git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@40 ea6a568a-9f4f-0410-981a-c910a81bb256
This commit is contained in:
nkorslund 2008-08-27 07:38:47 +00:00
parent b045938c85
commit 1cf6cb106f

View file

@ -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; }