From 1a776b4f614a7ef17040747605386dc4b83b9b97 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Fri, 7 Sep 2018 20:33:33 +0900 Subject: [PATCH] binding: fix compile error. Change-Id: I3c5b0390f39ca885529475330a73f9af7dee29d0 --- src/binding/c/lottieanimation_capi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/binding/c/lottieanimation_capi.cpp b/src/binding/c/lottieanimation_capi.cpp index c4ac80e..cd500da 100644 --- a/src/binding/c/lottieanimation_capi.cpp +++ b/src/binding/c/lottieanimation_capi.cpp @@ -96,7 +96,7 @@ LOT_EXPORT const LOTNode* lottie_animation_get_node(const Lottie_Animation_S *an if (idx >= animation->mArraySize) return nullptr; - return animation->mAnimation->renderList(animation->mFrameNo, animation->w, animation->h)[idx]; + return animation->mAnimation->renderList(animation->mFrameNo, animation->mWidth, animation->mHeight)[idx]; } LOT_EXPORT void -- 2.34.1