Skip to content

Commit

Permalink
Fixed missing comma in list. Fixed loop with too small loop variable. (
Browse files Browse the repository at this point in the history
  • Loading branch information
Hecklezz committed Sep 4, 2024
1 parent bd266a4 commit c272453
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion indra/newview/llfloaterimagepreview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
Expand Down
2 changes: 1 addition & 1 deletion indra/newview/llviewerfloaterreg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class LLFloaterOpenHandler : public LLCommandHandler
"avatar_picker",
"camera",
"camera_presets",
"change_item_thumbnail"
"change_item_thumbnail",
"classified",
"add_landmark",
"delete_pref_preset",
Expand Down

0 comments on commit c272453

Please sign in to comment.