diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-05-13 16:28:21 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-05-13 16:28:21 -0400 |
commit | b0c2aebece1f4a6a02c704aa17d199379732c132 (patch) | |
tree | 500daeca000560d17991064c04d30984fb6b7858 /indra | |
parent | 5975650a8b9b3d7a5844d6478fb3bbd475592be1 (diff) |
EXT-7305 : FIXED : Changed LLWearableDictionary to LLWearableType
Changed WT_NONE to 255 from -1, since 255 was formerly the designation for WT_INVALID which is now being used for WT_NONE.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llwearabletype.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llwearabletype.h b/indra/newview/llwearabletype.h index b0326ce0d8..e6d955b6d5 100644 --- a/indra/newview/llwearabletype.h +++ b/indra/newview/llwearabletype.h @@ -59,7 +59,7 @@ public: WT_TATTOO = 14, WT_COUNT = 15, - WT_NONE = -1, + WT_NONE = 255, }; static const std::string& getTypeName(EType type); |