diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2024-04-30 14:17:09 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2024-05-01 23:31:07 +0200 |
commit | 23729442aab7130f3368d433e8a5a9dd45ff6b98 (patch) | |
tree | f50d8a671c3b8cda39f7e03aa1fef8cbcd8d68d9 /indra/newview/llavatarrendernotifier.h | |
parent | c05c066894c7a49fb8a3dba553bac56216398934 (diff) |
secondlife/viewer#1359 Introduce enum ERezzedStatus
Diffstat (limited to 'indra/newview/llavatarrendernotifier.h')
-rw-r--r-- | indra/newview/llavatarrendernotifier.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llavatarrendernotifier.h b/indra/newview/llavatarrendernotifier.h index 37130bfcf6..f30b6b3612 100644 --- a/indra/newview/llavatarrendernotifier.h +++ b/indra/newview/llavatarrendernotifier.h @@ -33,6 +33,8 @@ class LLViewerRegion; +enum ERezzedStatus : S32; + struct LLHUDComplexity { LLHUDComplexity() @@ -130,7 +132,7 @@ private: S32 mLastSkeletonSerialNum; // Used to detect changes in voavatar's rezzed status. // If value decreases - there were changes in outfit. - S32 mLastOutfitRezStatus; + enum ERezzedStatus mLastOutfitRezStatus; object_complexity_list_t mObjectComplexityList; }; |