From: JunsuChoi Date: Wed, 30 Oct 2019 11:23:32 +0000 (+0900) Subject: VDrawable: Fix initial value of an enum X-Git-Tag: submit/tizen/20191111.211104~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=679e4b50f90c5820ef1da4b7e6db49aed8a8cf31;p=platform%2Fcore%2Fuifw%2Flottie-player.git VDrawable: Fix initial value of an enum --- diff --git a/src/vector/vdrawable.h b/src/vector/vdrawable.h index 05e5290..6120efc 100644 --- a/src/vector/vdrawable.h +++ b/src/vector/vdrawable.h @@ -27,11 +27,11 @@ class VDrawable { public: enum class DirtyState : unsigned char { - None = 1<<1, - Path = 1<<2, - Stroke = 1<<3, - Brush = 1<<4, - All = (None | Path | Stroke | Brush) + None = 1<<0, + Path = 1<<1, + Stroke = 1<<2, + Brush = 1<<3, + All = (Path | Stroke | Brush) }; enum class Type : unsigned char{