diff options
| author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-06-27 19:23:48 -0400 |
|---|---|---|
| committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-06-27 19:23:48 -0400 |
| commit | ef7bfa5e5260d26505bf8ae90780ee45de9216ef (patch) | |
| tree | 50c9986a9f3fff2c0d9a913c418bc5aa423bfc72 /indra/newview/llfloaterbvhpreview.cpp | |
| parent | 26e0ae1b1f387e626d8aedc2760d75308d5fb1ba (diff) | |
Restore glTF mesh modifications.
Diffstat (limited to 'indra/newview/llfloaterbvhpreview.cpp')
| -rw-r--r-- | indra/newview/llfloaterbvhpreview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterbvhpreview.cpp b/indra/newview/llfloaterbvhpreview.cpp index 5ee93be061..b94c31ec04 100644 --- a/indra/newview/llfloaterbvhpreview.cpp +++ b/indra/newview/llfloaterbvhpreview.cpp @@ -179,7 +179,7 @@ void LLFloaterBvhPreview::setAnimCallbacks() getChild<LLUICtrl>("ease_out_time")->setValidateBeforeCommit( boost::bind(&LLFloaterBvhPreview::validateEaseOut, this, _1)); } -std::map<std::string, std::string, std::less<>> LLFloaterBvhPreview::getJointAliases() +std::map <std::string, std::string> LLFloaterBvhPreview::getJointAliases() { LLPointer<LLVOAvatar> av = (LLVOAvatar*)mAnimPreview->getDummyAvatar(); return av->getJointAliases(); @@ -252,7 +252,7 @@ bool LLFloaterBvhPreview::postBuild() ELoadStatus load_status = E_ST_OK; S32 line_number = 0; - auto joint_alias_map = getJointAliases(); + std::map<std::string, std::string> joint_alias_map = getJointAliases(); loaderp = new LLBVHLoader(file_buffer, load_status, line_number, joint_alias_map); std::string status = getString(STATUS[load_status]); |
