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:
parent
b045938c85
commit
1cf6cb106f
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue