mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +00:00
common shape: fix grammar mistake.
array values are not copied by *a = *b;
This commit is contained in:
parent
8d5e4e883d
commit
1a247fe1f7
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ struct Shape::Impl
|
||||||
bool duplicate(Shape::Impl *src)
|
bool duplicate(Shape::Impl *src)
|
||||||
{
|
{
|
||||||
//Color
|
//Color
|
||||||
*color = *src->color;
|
memcpy(color, src->color, sizeof(color));
|
||||||
flag = RenderUpdateFlag::Color;
|
flag = RenderUpdateFlag::Color;
|
||||||
|
|
||||||
//Copy Path
|
//Copy Path
|
||||||
|
|
Loading…
Add table
Reference in a new issue