Sdk/EntityList: Fix empty() behavior

This commit is contained in:
Lynix 2017-04-21 21:27:07 +02:00
parent 203509f141
commit 3c99782643
1 changed files with 1 additions and 1 deletions

View File

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