aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llui.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:59 -0500
committerJacek Antonelli2008-08-15 23:45:59 -0500
commit6e91a9cc3d5a610198cf526a76e2ab642f10ecd7 (patch)
treeb023869f9daa7f61ea3ab27112d37524bdd88de4 /linden/indra/llui/llui.cpp
parentSecond Life viewer sources 1.20.12 (diff)
downloadmeta-impy-6e91a9cc3d5a610198cf526a76e2ab642f10ecd7.zip
meta-impy-6e91a9cc3d5a610198cf526a76e2ab642f10ecd7.tar.gz
meta-impy-6e91a9cc3d5a610198cf526a76e2ab642f10ecd7.tar.bz2
meta-impy-6e91a9cc3d5a610198cf526a76e2ab642f10ecd7.tar.xz
Second Life viewer sources 1.20.13
Diffstat (limited to '')
-rw-r--r--linden/indra/llui/llui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llui/llui.cpp b/linden/indra/llui/llui.cpp
index d2084e3..11889be 100644
--- a/linden/indra/llui/llui.cpp
+++ b/linden/indra/llui/llui.cpp
@@ -1671,13 +1671,13 @@ LLString LLUI::locateSkin(const LLString& filename)
1671 localization = sConfigGroup->getString("SystemLanguage"); 1671 localization = sConfigGroup->getString("SystemLanguage");
1672 } 1672 }
1673 LLString local_skin = "xui" + slash + localization + slash + filename; 1673 LLString local_skin = "xui" + slash + localization + slash + filename;
1674 found_file = gDirUtilp->getExpandedFilename(LL_PATH_SKINS, local_skin); 1674 found_file = gDirUtilp->findSkinnedFilename(local_skin);
1675 } 1675 }
1676 } 1676 }
1677 if (!gDirUtilp->fileExists(found_file)) 1677 if (!gDirUtilp->fileExists(found_file))
1678 { 1678 {
1679 LLString local_skin = "xui" + slash + "en-us" + slash + filename; 1679 LLString local_skin = "xui" + slash + "en-us" + slash + filename;
1680 found_file = gDirUtilp->getExpandedFilename(LL_PATH_SKINS, local_skin); 1680 found_file = gDirUtilp->findSkinnedFilename(local_skin);
1681 } 1681 }
1682 if (!gDirUtilp->fileExists(found_file)) 1682 if (!gDirUtilp->fileExists(found_file))
1683 { 1683 {