From abff77e985343b99c53c9716830243d4679d8da3 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Wed, 26 Jun 2019 20:12:25 +0900 Subject: [PATCH] Fix typo that incorrect matrix information. --- src/lottie/lottieitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lottie/lottieitem.cpp b/src/lottie/lottieitem.cpp index 9b823c5b8a..14ff7322e0 100644 --- a/src/lottie/lottieitem.cpp +++ b/src/lottie/lottieitem.cpp @@ -843,7 +843,7 @@ void LOTImageLayerItem::buildLayerNode() lotDrawable->mCNode->mImageInfo.mMatrix.m31 = combinedMatrix().m_tx(); lotDrawable->mCNode->mImageInfo.mMatrix.m32 = combinedMatrix().m_ty(); - lotDrawable->mCNode->mImageInfo.mMatrix.m33 = combinedMatrix().m_13(); + lotDrawable->mCNode->mImageInfo.mMatrix.m33 = combinedMatrix().m_33(); mCNodeList.push_back(lotDrawable->mCNode.get()); }