diff options
author | prep linden <prep@lindenlab.com> | 2011-08-30 10:46:41 -0400 |
---|---|---|
committer | prep linden <prep@lindenlab.com> | 2011-08-30 10:46:41 -0400 |
commit | 2df669c402b5344397499186e73d0886dd5da4d1 (patch) | |
tree | 4628b7d608be7a0a2061bdaebb250df5813e554c /indra/llprimitive | |
parent | 6f2820bcd7b7ed06fefeca0e2c34c45ef77e4b62 (diff) |
Log error message if material list is not a subset of reference model
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/llmodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp index d13e6b662c..6e4bb7ec97 100644 --- a/indra/llprimitive/llmodel.cpp +++ b/indra/llprimitive/llmodel.cpp @@ -1959,6 +1959,7 @@ bool LLModel::matchMaterialOrder(LLModel* ref, int& refFaceCnt, int& modelFaceCn bool isASubset = isMaterialListSubset( ref ); if ( !isASubset ) { + llinfos<<"Material of model is not a subset of reference."<<llendl; return false; } |