Update MDLMaterialLoader.cpp (#5620)
* Update MDLMaterialLoader.cpp - closes https://github.com/assimp/assimp/issues/5239 * Add missing declarationkimkulling/innosetup_action
parent
97cbecb859
commit
81858f9e62
|
@ -730,7 +730,8 @@ void MDLImporter::SkipSkinLump_3DGS_MDL7(
|
||||||
// if an ASCII effect description (HLSL?) is contained in the file,
|
// if an ASCII effect description (HLSL?) is contained in the file,
|
||||||
// we can simply ignore it ...
|
// we can simply ignore it ...
|
||||||
if (iType & AI_MDL7_SKINTYPE_MATERIAL_ASCDEF) {
|
if (iType & AI_MDL7_SKINTYPE_MATERIAL_ASCDEF) {
|
||||||
int32_t iMe = *((int32_t *)szCurrent);
|
int32_t iMe = 0;
|
||||||
|
::memcpy(&iMe, szCurrent, sizeof(int32_t));
|
||||||
AI_SWAP4(iMe);
|
AI_SWAP4(iMe);
|
||||||
szCurrent += sizeof(char) * iMe + sizeof(int32_t);
|
szCurrent += sizeof(char) * iMe + sizeof(int32_t);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue