summaryrefslogtreecommitdiffstats
path: root/src/modelinfo/ClumpModelInfo.cpp
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2021-01-08 21:30:35 +0100
committerFire-Head <Fire-Head@users.noreply.github.com>2021-01-08 21:30:35 +0100
commit39a121351de14f193f2f4efcbaef368d80ccfba9 (patch)
tree7fa767968e8e838b68894ff21c284c5f6c9338dc /src/modelinfo/ClumpModelInfo.cpp
parent.ini for scaling, radar, sprites (diff)
parentUse original names (diff)
downloadre3-39a121351de14f193f2f4efcbaef368d80ccfba9.tar
re3-39a121351de14f193f2f4efcbaef368d80ccfba9.tar.gz
re3-39a121351de14f193f2f4efcbaef368d80ccfba9.tar.bz2
re3-39a121351de14f193f2f4efcbaef368d80ccfba9.tar.lz
re3-39a121351de14f193f2f4efcbaef368d80ccfba9.tar.xz
re3-39a121351de14f193f2f4efcbaef368d80ccfba9.tar.zst
re3-39a121351de14f193f2f4efcbaef368d80ccfba9.zip
Diffstat (limited to '')
-rw-r--r--src/modelinfo/ClumpModelInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modelinfo/ClumpModelInfo.cpp b/src/modelinfo/ClumpModelInfo.cpp
index 64bb5ed5..ec64977b 100644
--- a/src/modelinfo/ClumpModelInfo.cpp
+++ b/src/modelinfo/ClumpModelInfo.cpp
@@ -112,7 +112,7 @@ CClumpModelInfo::SetClump(RpClump *clump)
}
RpHAnimHierarchySetFlags(hier, (RpHAnimHierarchyFlag)(rpHANIMHIERARCHYUPDATEMODELLINGMATRICES|rpHANIMHIERARCHYUPDATELTMS));
}
- if(strcmp(GetName(), "playerh") == 0){
+ if(strcmp(GetModelName(), "playerh") == 0){
// playerh is incompatible with the xbox player skin
// so check if player model is skinned and only apply skin to head if it isn't
CPedModelInfo *body = (CPedModelInfo*)CModelInfo::GetModelInfo(MI_PLAYER);
@@ -120,7 +120,7 @@ CClumpModelInfo::SetClump(RpClump *clump)
RpClumpForAllAtomics(clump, SetAtomicRendererCB, (void*)CVisibilityPlugins::RenderPlayerCB);
}
#else
- if(strcmp(GetName(), "playerh") == 0){
+ if(strcmp(GetModelName(), "playerh") == 0){
RpClumpForAllAtomics(clump, SetAtomicRendererCB, (void*)CVisibilityPlugins::RenderPlayerCB);
#endif
}