From: Hermet Park Date: Fri, 7 Sep 2018 11:33:33 +0000 (+0900) Subject: binding: fix compile error. X-Git-Tag: submit/tizen/20180917.042405~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a776b4f614a7ef17040747605386dc4b83b9b97;p=platform%2Fcore%2Fuifw%2Flottie-player.git binding: fix compile error. Change-Id: I3c5b0390f39ca885529475330a73f9af7dee29d0 --- 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