mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-17 20:10:23 +03:00
Mac OS X 10.6 & More C++03 Support (#68)
* Mac OS X 10.6 & More C++03 Support * Fix SDL2 options.txt loading for C++03 --------- Co-authored-by: Brent Da Mage <BrentDaMage@users.noreply.github.com>
This commit is contained in:
@@ -167,9 +167,9 @@ void Player::aiStep()
|
||||
AABB scanAABB = m_hitbox;
|
||||
scanAABB.grow(1, 1, 1);
|
||||
|
||||
auto pEnts = m_pLevel->getEntities(this, scanAABB);
|
||||
EntityVector* pEnts = m_pLevel->getEntities(this, scanAABB);
|
||||
|
||||
for (auto it = pEnts->begin(); it != pEnts->end(); it++)
|
||||
for (EntityVector::iterator it = pEnts->begin(); it != pEnts->end(); it++)
|
||||
{
|
||||
Entity* pEnt = *it;
|
||||
if (pEnt->m_bRemoved)
|
||||
|
||||
Reference in New Issue
Block a user