diff --git a/code/ryzom/client/src/door_manager.cpp b/code/ryzom/client/src/door_manager.cpp index 8f8062ceb..eac9310b2 100644 --- a/code/ryzom/client/src/door_manager.cpp +++ b/code/ryzom/client/src/door_manager.cpp @@ -489,9 +489,9 @@ void CDoorManager::getPACSTriggers() } // Retrieve the door pointer - SDoor *pDoor = (SDoor*)((nUserDataDoor >> 16)&0xffffffff); + SDoor *pDoor = (SDoor*)((nUserDataDoor >> 16)&0xffffffffff); // Retrieve the entity pointer - CEntityCL *pEntity = (CEntityCL*)((nUserDataEntity >> 16)&0xffffffff); + CEntityCL *pEntity = (CEntityCL*)((nUserDataEntity >> 16)&0xffffffffff); if (rTI.CollisionType == UTriggerInfo::Inside) pDoor->entityCollide(pEntity);