aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llvfs
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llvfs')
-rw-r--r--linden/indra/llvfs/lldir.cpp8
-rw-r--r--linden/indra/llvfs/lldir.h3
2 files changed, 10 insertions, 1 deletions
diff --git a/linden/indra/llvfs/lldir.cpp b/linden/indra/llvfs/lldir.cpp
index a20b21f..ae35b65 100644
--- a/linden/indra/llvfs/lldir.cpp
+++ b/linden/indra/llvfs/lldir.cpp
@@ -324,6 +324,14 @@ std::string LLDir::getExpandedFilename(ELLPath location, const std::string& subd
324 prefix += "skins"; 324 prefix += "skins";
325 break; 325 break;
326 326
327 case LL_PATH_HTML:
328 prefix = getAppRODataDir();
329 prefix += mDirDelimiter;
330 prefix += "skins";
331 prefix += mDirDelimiter;
332 prefix += "html";
333 break;
334
327 case LL_PATH_MOZILLA_PROFILE: 335 case LL_PATH_MOZILLA_PROFILE:
328 prefix = getOSUserAppDir(); 336 prefix = getOSUserAppDir();
329 prefix += mDirDelimiter; 337 prefix += mDirDelimiter;
diff --git a/linden/indra/llvfs/lldir.h b/linden/indra/llvfs/lldir.h
index b133b7d..4426935 100644
--- a/linden/indra/llvfs/lldir.h
+++ b/linden/indra/llvfs/lldir.h
@@ -49,7 +49,8 @@ typedef enum ELLPath
49 LL_PATH_CHAT_LOGS = 12, 49 LL_PATH_CHAT_LOGS = 12,
50 LL_PATH_PER_ACCOUNT_CHAT_LOGS = 13, 50 LL_PATH_PER_ACCOUNT_CHAT_LOGS = 13,
51 LL_PATH_MOZILLA_PROFILE = 14, 51 LL_PATH_MOZILLA_PROFILE = 14,
52 LL_PATH_COUNT = 15 52 LL_PATH_HTML = 15,
53 LL_PATH_COUNT = 16
53} ELLPath; 54} ELLPath;
54 55
55 56