diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-05-25 11:09:23 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-05-25 11:09:23 -0700 |
commit | 05921cfcb2db7ccc8fb872d942eb236b839e3dad (patch) | |
tree | 18eb8bd825d6f12941f1871bbfde24f0317c9a40 /indra/newview/llviewermessage.cpp | |
parent | 7f71798e0187332dd2b66c4a15b3257eec6e2190 (diff) |
PATH-638: Removing the viewer-side multiplication of the percentage character step as the server will now be doing the math.
Diffstat (limited to 'indra/newview/llviewermessage.cpp')
-rwxr-xr-x | indra/newview/llviewermessage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index d69e4eff6f..5a9faf53d9 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -4636,7 +4636,7 @@ void process_sim_stats(LLMessageSystem *msg, void **user_data) LLViewerStats::getInstance()->mSimSimSkippedSilhouetteSteps.addValue(stat_value); break; case LL_SIM_STAT_PCTSTEPPEDCHARACTERS: - LLViewerStats::getInstance()->mSimSimPctSteppedCharacters.addValue(stat_value * 100.0f); + LLViewerStats::getInstance()->mSimSimPctSteppedCharacters.addValue(stat_value); break; default: // Used to be a commented out warning. |