mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00
loader lottie: fix a missing initialization.
this breaks 0 frame lottie rendering, now it's fixed.
This commit is contained in:
parent
3e8126ead9
commit
023b38ad3c
1 changed files with 1 additions and 1 deletions
|
@ -401,8 +401,8 @@ struct LottieLayer : LottieGroup
|
||||||
|
|
||||||
//cached data
|
//cached data
|
||||||
struct {
|
struct {
|
||||||
|
int32_t frameNo = -1;
|
||||||
Matrix matrix;
|
Matrix matrix;
|
||||||
int32_t frameNo;
|
|
||||||
uint8_t opacity;
|
uint8_t opacity;
|
||||||
} cache;
|
} cache;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue