mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-26 19:14:15 +01:00
Fix
This commit is contained in:
parent
9a9b1e7574
commit
dd579c4080
@ -1955,12 +1955,11 @@ CWorld::Process(void)
|
|||||||
} else {
|
} else {
|
||||||
for(CPtrNode *node = ms_listMovingEntityPtrs.first; node; node = node->next) {
|
for(CPtrNode *node = ms_listMovingEntityPtrs.first; node; node = node->next) {
|
||||||
CEntity *movingEnt = (CEntity *)node->item;
|
CEntity *movingEnt = (CEntity *)node->item;
|
||||||
#ifdef SQUEEZE_PERFORMANCE
|
#ifdef FIX_BUGS // from VC
|
||||||
if (movingEnt->bRemoveFromWorld) {
|
if(!movingEnt->bRemoveFromWorld && movingEnt->m_rwObject && RwObjectGetType(movingEnt->m_rwObject) == rpCLUMP &&
|
||||||
RemoveEntityInsteadOfProcessingIt(movingEnt);
|
#else
|
||||||
} else
|
|
||||||
#endif
|
|
||||||
if(movingEnt->m_rwObject && RwObjectGetType(movingEnt->m_rwObject) == rpCLUMP &&
|
if(movingEnt->m_rwObject && RwObjectGetType(movingEnt->m_rwObject) == rpCLUMP &&
|
||||||
|
#endif
|
||||||
RpAnimBlendClumpGetFirstAssociation(movingEnt->GetClump())) {
|
RpAnimBlendClumpGetFirstAssociation(movingEnt->GetClump())) {
|
||||||
RpAnimBlendClumpUpdateAnimations(movingEnt->GetClump(),
|
RpAnimBlendClumpUpdateAnimations(movingEnt->GetClump(),
|
||||||
0.02f * (movingEnt->IsObject()
|
0.02f * (movingEnt->IsObject()
|
||||||
|
Loading…
Reference in New Issue
Block a user