diff options
author | andreykproductengine <akleshchev@productengine.com> | 2015-02-23 15:04:32 +0200 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2015-02-23 15:04:32 +0200 |
commit | 6993f835e702fc41e01fe247427e795974edeb43 (patch) | |
tree | 2218bb23ec64838a98da53eb194b2fc3f4f9a062 /indra/llprimitive/lldaeloader.cpp | |
parent | b25dfc8cfd41c85c6752f6c63dded1e86ed10801 (diff) |
MAINT-4915 FIXED [loader mods] Incorrect error description in case of VERTEX_NUMBER_OVERFLOW
Diffstat (limited to 'indra/llprimitive/lldaeloader.cpp')
-rw-r--r-- | indra/llprimitive/lldaeloader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llprimitive/lldaeloader.cpp b/indra/llprimitive/lldaeloader.cpp index 242a669678..50bf03b32f 100644 --- a/indra/llprimitive/lldaeloader.cpp +++ b/indra/llprimitive/lldaeloader.cpp @@ -928,7 +928,7 @@ bool LLDAELoader::OpenFile(const std::string& filename) LLModel* mdl = *i; if(mdl->getStatus() != LLModel::NO_ERRORS) { - setLoadState(ERROR_PARSING + mdl->getStatus()) ; + setLoadState(ERROR_MODEL + mdl->getStatus()) ; return false; //abort } |