fix head/hand atomics

This commit is contained in:
aap
2020-05-17 15:16:12 +02:00
parent ad0b99231e
commit 964acba083
2 changed files with 11 additions and 1 deletions

View File

@@ -21,16 +21,19 @@ CPedModelInfo::DeleteRwObject(void)
frame = RpAtomicGetFrame(m_head);
RpAtomicDestroy(m_head);
RwFrameDestroy(frame);
m_head = nil;
}
if(m_lhand){
frame = RpAtomicGetFrame(m_lhand);
RpAtomicDestroy(m_lhand);
RwFrameDestroy(frame);
m_lhand = nil;
}
if(m_rhand){
frame = RpAtomicGetFrame(m_rhand);
RpAtomicDestroy(m_rhand);
RwFrameDestroy(frame);
m_rhand = nil;
}
#endif
CClumpModelInfo::DeleteRwObject(); // PC calls this first