diff options
| author | James Cook <james@lindenlab.com> | 2007-04-07 03:23:13 +0000 | 
|---|---|---|
| committer | James Cook <james@lindenlab.com> | 2007-04-07 03:23:13 +0000 | 
| commit | 568397bbcc4fca307ebc010ec7f815422b9ba80a (patch) | |
| tree | 660c5be73b8c46321610d7b2ba3c981eda1f64f3 | |
| parent | 8247d5d396518ae97b2a444393e5df8cdadb1bd4 (diff) | |
Fixed Mac compiler warnings for deployment builds.
| -rw-r--r-- | indra/newview/llselectmgr.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index a38bfc3600..cd4d8d2f87 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -5145,7 +5145,8 @@ void LLSelectNode::saveTextureScaleRatios()  			F32 s,t;  			const LLTextureEntry* tep = mObject->getTE(i);  			tep->getScale(&s,&t); -			U32 s_axis, t_axis; +			U32 s_axis = 0; +			U32 t_axis = 0;  			gSelectMgr->getTESTAxes(mObject, i, &s_axis, &t_axis); | 
