mirror of
https://github.com/celisej567/source-engine.git
synced 2026-09-13 20:13:45 +03:00
arm64 : fix intptr_t size
This commit is contained in:
@@ -191,7 +191,7 @@ AI_EnemyInfo_t *CAI_Enemies::GetFirst( AIEnemiesIter_t *pIter )
|
||||
|
||||
AI_EnemyInfo_t *CAI_Enemies::GetNext( AIEnemiesIter_t *pIter )
|
||||
{
|
||||
CMemMap::IndexType_t i = (CMemMap::IndexType_t)((unsigned)(*pIter));
|
||||
CMemMap::IndexType_t i = (CMemMap::IndexType_t)((uintp)(*pIter));
|
||||
|
||||
if ( i == m_Map.InvalidIndex() )
|
||||
return NULL;
|
||||
|
||||
Reference in New Issue
Block a user