Fixed missing comma in list. Fixed loop with too small loop variable. (#2497)
parent
bd266a4a86
commit
c2724537ad
|
|
@ -852,7 +852,7 @@ void LLImagePreviewSculpted::setPreviewTarget(LLImageRaw* imagep, F32 distance)
|
|||
}
|
||||
|
||||
// build indices
|
||||
for (U16 i = 0; i < num_indices; i++)
|
||||
for (U32 i = 0; i < num_indices; i++)
|
||||
{
|
||||
*(index_strider++) = vf.mIndices[i];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -242,7 +242,7 @@ public:
|
|||
"avatar_picker",
|
||||
"camera",
|
||||
"camera_presets",
|
||||
"change_item_thumbnail"
|
||||
"change_item_thumbnail",
|
||||
"classified",
|
||||
"add_landmark",
|
||||
"delete_pref_preset",
|
||||
|
|
|
|||
Loading…
Reference in New Issue