All your codebase are belong to us.

This commit is contained in:
Drake Arconis
2014-08-22 00:15:09 -04:00
parent 2a64c07215
commit 948ebe5213
110 changed files with 661 additions and 611 deletions

View File

@@ -1203,7 +1203,7 @@ void LLPanelLandObjects::refresh()
{
S32 sw_max = parcel->getSimWideMaxPrimCapacity();
S32 sw_total = parcel->getSimWidePrimCount();
S32 max = llround(parcel->getMaxPrimCapacity() * parcel->getParcelPrimBonus());
S32 max = llmath::llround(parcel->getMaxPrimCapacity() * parcel->getParcelPrimBonus());
S32 total = parcel->getPrimCount();
S32 owned = parcel->getOwnerPrimCount();
S32 group = parcel->getGroupPrimCount();
@@ -2081,9 +2081,9 @@ void LLPanelLandOptions::refresh()
else
{
mLocationText->setTextArg("[LANDING]",llformat("%d, %d, %d",
llround(pos.mV[VX]),
llround(pos.mV[VY]),
llround(pos.mV[VZ])));
llmath::llround(pos.mV[VX]),
llmath::llround(pos.mV[VY]),
llmath::llround(pos.mV[VZ])));
}
mSetBtn->setEnabled( can_change_landing_point );