mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 07:18:59 +00:00
Compilation fix
This commit is contained in:
parent
bbcf3fd7d2
commit
85cf043e4a
1 changed files with 3 additions and 2 deletions
|
@ -578,11 +578,12 @@ CCutsceneMgr::AttachObjectToFrame(CObject *pObject, CEntity *pAttachTo, const ch
|
||||||
CModelInfo::GetModelInfo(pObject->GetModelIndex())->GetName(),
|
CModelInfo::GetModelInfo(pObject->GetModelIndex())->GetName(),
|
||||||
frame,
|
frame,
|
||||||
CModelInfo::GetModelInfo(pAttachTo->GetModelIndex())->GetName());
|
CModelInfo::GetModelInfo(pAttachTo->GetModelIndex())->GetName());
|
||||||
RpClump* clump = pObject->GetClump();
|
if (RwObjectGetType(pObject->m_rwObject) == rpCLUMP) {
|
||||||
if (RwObjectGetType(clump) == rpCLUMP)
|
RpClump *clump = (RpClump*)pObject->m_rwObject;
|
||||||
if (IsClumpSkinned(clump))
|
if (IsClumpSkinned(clump))
|
||||||
RpAtomicGetBoundingSphere(GetFirstAtomic(clump))->radius *= 1.1f;
|
RpAtomicGetBoundingSphere(GetFirstAtomic(clump))->radius *= 1.1f;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
CCutsceneMgr::AttachObjectToBone(CObject *pObject, CObject *pAttachTo, int bone)
|
CCutsceneMgr::AttachObjectToBone(CObject *pObject, CObject *pAttachTo, int bone)
|
||||||
|
|
Loading…
Reference in a new issue