mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 17:49:16 +01:00
Compilation fix
This commit is contained in:
parent
bbcf3fd7d2
commit
85cf043e4a
@ -578,10 +578,11 @@ 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
|
||||||
|
Loading…
Reference in New Issue
Block a user