tiny cleanup

This commit is contained in:
aap 2020-07-16 13:35:35 +02:00
parent 841fa5155c
commit 23da99622c
1 changed files with 1 additions and 1 deletions

View File

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