Fixed Mac compiler warnings for deployment builds.

master
James Cook 2007-04-07 03:23:13 +00:00
parent 8247d5d396
commit 568397bbcc
1 changed files with 2 additions and 1 deletions

View File

@ -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);