Sdk/EntityList: Fix empty() behavior
This commit is contained in:
parent
203509f141
commit
3c99782643
|
|
@ -119,7 +119,7 @@ namespace Ndk
|
|||
|
||||
inline bool EntityList::empty() const
|
||||
{
|
||||
return m_entityBits.TestAny();
|
||||
return !m_entityBits.TestAny();
|
||||
}
|
||||
|
||||
inline EntityList::iterator EntityList::end() const
|
||||
|
|
|
|||
Loading…
Reference in New Issue