diff options
author | David Seikel | 2011-01-18 10:28:17 +1000 |
---|---|---|
committer | David Seikel | 2011-01-18 10:28:17 +1000 |
commit | 1f984a91011bd9b63266c2dd4232a24573cec9fe (patch) | |
tree | c5097ff12c741cd6e883de2218e4fc9d13b2d1e8 | |
parent | Just a temporary hack, to make sure make -j does not get a ridiculously large... (diff) | |
download | meta-impy-1f984a91011bd9b63266c2dd4232a24573cec9fe.zip meta-impy-1f984a91011bd9b63266c2dd4232a24573cec9fe.tar.gz meta-impy-1f984a91011bd9b63266c2dd4232a24573cec9fe.tar.bz2 meta-impy-1f984a91011bd9b63266c2dd4232a24573cec9fe.tar.xz |
Comment changing the texture cache to match the system cache, since it turns out that important system textures such as the
water normal map are delivered in the SKINS folder and if they were in the cache directory they'd be deleted when the cache
was reset. Also fix a bug with resetting the cache location.
By Tom Meta from his fork. See the TomsOldWork branch.
-rw-r--r-- | linden/indra/newview/llpanelnetwork.cpp | 2 | ||||
-rw-r--r-- | linden/indra/newview/lltexturecache.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/newview/llpanelnetwork.cpp b/linden/indra/newview/llpanelnetwork.cpp index 2edd1a1..ec0b6ee 100644 --- a/linden/indra/newview/llpanelnetwork.cpp +++ b/linden/indra/newview/llpanelnetwork.cpp | |||
@@ -127,7 +127,7 @@ void LLPanelNetwork::onClickResetCache(void* user_data) | |||
127 | LLPanelNetwork* self = (LLPanelNetwork*)user_data; | 127 | LLPanelNetwork* self = (LLPanelNetwork*)user_data; |
128 | if (!gSavedSettings.getString("CacheLocation").empty()) | 128 | if (!gSavedSettings.getString("CacheLocation").empty()) |
129 | { | 129 | { |
130 | gSavedSettings.setString("NewCacheLocation", ""); | 130 | gSavedSettings.setString("NewCacheLocation", gDirUtilp->getCacheDir(true)); |
131 | LLNotifications::instance().add("CacheWillBeMoved"); | 131 | LLNotifications::instance().add("CacheWillBeMoved"); |
132 | } | 132 | } |
133 | std::string cache_location = gDirUtilp->getCacheDir(true); | 133 | std::string cache_location = gDirUtilp->getCacheDir(true); |
diff --git a/linden/indra/newview/lltexturecache.cpp b/linden/indra/newview/lltexturecache.cpp index a1a9a39..4679137 100644 --- a/linden/indra/newview/lltexturecache.cpp +++ b/linden/indra/newview/lltexturecache.cpp | |||
@@ -800,6 +800,8 @@ std::string LLTextureCache::getLocalFileName(const LLUUID& id) | |||
800 | // Does not include extension | 800 | // Does not include extension |
801 | std::string idstr = id.asString(); | 801 | std::string idstr = id.asString(); |
802 | // TODO: should we be storing cached textures in skin directory? | 802 | // TODO: should we be storing cached textures in skin directory? |
803 | //We use LL_PATH_SKINS because the default textures (water normal map etc) are delivered in the SKINS path. | ||
804 | //Turns out we can't change this to LL_PATH_CACHE or these important textures will be removed when the user clears their cache. | ||
803 | std::string filename = gDirUtilp->getExpandedFilename(LL_PATH_SKINS, "default", "textures", idstr); | 805 | std::string filename = gDirUtilp->getExpandedFilename(LL_PATH_SKINS, "default", "textures", idstr); |
804 | return filename; | 806 | return filename; |
805 | } | 807 | } |