diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2009-11-06 14:58:27 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2009-11-06 14:58:27 +0000 |
commit | 6552c1a973ec26a889b6ad4a34c492a3ffc3f644 (patch) | |
tree | 1de466344826fd5d586f5cee784afd6e76a73582 /indra/newview/llworldmapview.cpp | |
parent | c189943583f13dba0b56d58e4e4adec4f7f7f650 (diff) | |
parent | 904f6124b282e3e9668289bef9f7d44f8539ce51 (diff) |
merge.
Diffstat (limited to 'indra/newview/llworldmapview.cpp')
-rw-r--r-- | indra/newview/llworldmapview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llworldmapview.cpp b/indra/newview/llworldmapview.cpp index 920415873e..0509898f40 100644 --- a/indra/newview/llworldmapview.cpp +++ b/indra/newview/llworldmapview.cpp @@ -822,7 +822,7 @@ void LLWorldMapView::draw() else { double value = fmod(current_time, 2); - value = 0.5 + 0.5*cos(value * 3.14159f); + value = 0.5 + 0.5*cos(value * M_PI); LLColor4 loading_color(0.0, F32(value/2), F32(value), 1.0); drawTracking( LLWorldMap::getInstance()->mUnknownLocation, loading_color, TRUE, getString("Loading"), ""); } |