1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-13 08:48:31 +00:00

tiny cleanup

This commit is contained in:
aap 2020-07-16 13:35:35 +02:00
parent 841fa5155c
commit 23da99622c

View file

@ -202,7 +202,7 @@ isSkinnedCb(RpAtomic *atomic, void *data)
RpAtomic **pAtomic = (RpAtomic**)data; RpAtomic **pAtomic = (RpAtomic**)data;
if(*pAtomic) if(*pAtomic)
return nil; // already found one return nil; // already found one
if(RpSkinGeometryGetSkin(atomic->geometry)) if(RpSkinGeometryGetSkin(RpAtomicGetGeometry(atomic)))
*pAtomic = atomic; // we could just return nil here directly... *pAtomic = atomic; // we could just return nil here directly...
return atomic; return atomic;
} }