diff --git a/src/Fbx2Raw.cpp b/src/Fbx2Raw.cpp index d544d06..fb33485 100644 --- a/src/Fbx2Raw.cpp +++ b/src/Fbx2Raw.cpp @@ -538,7 +538,7 @@ private: std::vector results; for (int shapeIx = 0; shapeIx < mesh->GetDeformerCount(FbxDeformer::eBlendShape); shapeIx++) { - auto *fbxBlendShape = dynamic_cast(mesh->GetDeformer(shapeIx, FbxDeformer::eBlendShape)); + auto *fbxBlendShape = static_cast(mesh->GetDeformer(shapeIx, FbxDeformer::eBlendShape)); if (fbxBlendShape == nullptr) { continue; }