diff options
author | prep linden <prep@lindenlab.com> | 2011-08-10 12:27:29 -0400 |
---|---|---|
committer | prep linden <prep@lindenlab.com> | 2011-08-10 12:27:29 -0400 |
commit | b2da13f46b1d5bb2977f06a6c10ec550920b17a0 (patch) | |
tree | 2c8652a55719d31eb8315072c9602d2999305c89 /indra | |
parent | 0405e91df31b7fed5d994a6d2526a1c5a5bc8c5c (diff) |
Joint resolver now constructed from key name (cts-660)
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloatermodelpreview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloatermodelpreview.cpp b/indra/newview/llfloatermodelpreview.cpp index 3aca0f7119..7d34754214 100644 --- a/indra/newview/llfloatermodelpreview.cpp +++ b/indra/newview/llfloatermodelpreview.cpp @@ -1629,7 +1629,7 @@ bool LLModelLoader::doLoadModel() { //Build a joint for the resolver to work with char str[64]={0}; - sprintf(str,"./%s",(*jointIt).second.c_str() ); + sprintf(str,"./%s",(*jointIt).first.c_str() ); //llwarns<<"Joint "<< str <<llendl; //Setup the resolver |