aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSean Dague2009-04-13 14:52:29 +0000
committerSean Dague2009-04-13 14:52:29 +0000
commit15d39f33caa1ff89e1790a86b06c0785782e5685 (patch)
tree079a67cb47f5fc8ad0baa2531032b0d6e65d0ed4
parentcatch for a null asset so we don't get an exception here, though this (diff)
downloadopensim-SC_OLD-15d39f33caa1ff89e1790a86b06c0785782e5685.zip
opensim-SC_OLD-15d39f33caa1ff89e1790a86b06c0785782e5685.tar.gz
opensim-SC_OLD-15d39f33caa1ff89e1790a86b06c0785782e5685.tar.bz2
opensim-SC_OLD-15d39f33caa1ff89e1790a86b06c0785782e5685.tar.xz
scream out a bit warning if we failed to set default image
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs b/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs
index af359b3..aa2423f 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs
@@ -69,6 +69,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
69 m_assetCache = pAssetCache; 69 m_assetCache = pAssetCache;
70 if (pAssetCache != null) 70 if (pAssetCache != null)
71 m_missingsubstitute = pAssetCache.GetAsset(UUID.Parse("5748decc-f629-461c-9a36-a35a221fe21f"), true); 71 m_missingsubstitute = pAssetCache.GetAsset(UUID.Parse("5748decc-f629-461c-9a36-a35a221fe21f"), true);
72 else
73 m_log.Error("[ClientView] - couldn't set missing image, all manner of things will probably break");
72 m_j2kDecodeModule = pJ2kDecodeModule; 74 m_j2kDecodeModule = pJ2kDecodeModule;
73 } 75 }
74 76