diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-07-11 11:33:05 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-07-11 11:33:05 -0400 |
commit | 80e60371f8be32719dd19467fd2def80e994aa2d (patch) | |
tree | 36455ee5da952a51772743c21a2b41e874120d61 | |
parent | 97ba99b3c04904633ec3e52f69602a11343e8b4c (diff) |
Fix for linux build failure, hopefully
-rwxr-xr-x | 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 0939e7bbbf..80a9b8f781 100755 --- a/indra/newview/llfloatermodelpreview.cpp +++ b/indra/newview/llfloatermodelpreview.cpp @@ -3081,7 +3081,7 @@ U32 LLModelPreview::calcResourceCost() updateStatusMessages(); - return streaming_cost; + return (U32) streaming_cost; } void LLFloaterModelPreview::setDetails(F32 x, F32 y, F32 z, F32 streaming_cost, F32 physics_cost) |