aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt7
-rw-r--r--linden/indra/newview/llworldmapview.cpp7
2 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index ad83d48..1f3d3ae 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -12,7 +12,12 @@
12 12
13 modified: linden/indra/newview/app_settings/settings.xml 13 modified: linden/indra/newview/app_settings/settings.xml
14 modified: linden/indra/newview/llworldmapview.cpp 14 modified: linden/indra/newview/llworldmapview.cpp
15 15
16
17 * Fixed map textures displaying an X.
18
19 modified: linden/indra/newview/llworldmapview.cpp
20
16 21
172009-09-20 McCabe Maxsted <hakushakukun@gmail.com> 222009-09-20 McCabe Maxsted <hakushakukun@gmail.com>
18 23
diff --git a/linden/indra/newview/llworldmapview.cpp b/linden/indra/newview/llworldmapview.cpp
index 2b22b9d..90977ed 100644
--- a/linden/indra/newview/llworldmapview.cpp
+++ b/linden/indra/newview/llworldmapview.cpp
@@ -606,7 +606,11 @@ void LLWorldMapView::draw()
606 gGL.end(); 606 gGL.end();
607 } 607 }
608 608
609 // If this is mature, and you are not, draw a line across it 609 // As part of the AO project, we no longer want to draw access indicators;
610 // it's too complicated to get all the rules straight and will only
611 // cause confusion.
612 /**********************
613 // If this is mature, and you are not, draw a line across it
610 if (info->mAccess != SIM_ACCESS_DOWN 614 if (info->mAccess != SIM_ACCESS_DOWN
611 && info->mAccess > SIM_ACCESS_PG 615 && info->mAccess > SIM_ACCESS_PG
612 && gAgent.isTeen()) 616 && gAgent.isTeen())
@@ -622,6 +626,7 @@ void LLWorldMapView::draw()
622 gGL.vertex2f(right, top); 626 gGL.vertex2f(right, top);
623 gGL.end(); 627 gGL.end();
624 } 628 }
629 **********************/
625 630
626 // Draw the region name in the lower left corner 631 // Draw the region name in the lower left corner
627 LLFontGL* font = LLFontGL::sSansSerifSmall; 632 LLFontGL* font = LLFontGL::sSansSerifSmall;