diff --git a/indra/newview/llviewerpartsource.cpp b/indra/newview/llviewerpartsource.cpp
index 3eaca1969f8a332799032cdfa086cff81d7f0177..95595b5e4dcce64193bd7807fa7df8e06aa1ad6e 100644
--- a/indra/newview/llviewerpartsource.cpp
+++ b/indra/newview/llviewerpartsource.cpp
@@ -626,7 +626,7 @@ void LLViewerPartSourceSpiral::update(const F32 dt)
 {
 	if (!mImagep)
 	{
-		mImagep = LLViewerFetchedTexture::sPixieSmallImagep;
+		mImagep = LLViewerFetchedTexture::sPixieEffectImagep;
 	}
 
 	const F32 RATE = 0.025f;
@@ -799,7 +799,7 @@ void LLViewerPartSourceBeam::update(const F32 dt)
 
 		if (!mImagep)
 		{
-			mImagep = LLViewerFetchedTexture::sPixieSmallImagep;
+			mImagep = LLViewerFetchedTexture::sPixieEffectImagep;
 		}
 
 		LLViewerPart* part = new LLViewerPart();
@@ -886,7 +886,7 @@ void LLViewerPartSourceChat::update(const F32 dt)
 {
 	if (!mImagep)
 	{
-		mImagep = LLViewerFetchedTexture::sPixieSmallImagep;
+		mImagep = LLViewerFetchedTexture::sPixieEffectImagep;
 	}
 
 
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp
index 97148fcbfe97aa4da6ed02aa7ab596ad8db096b7..6159bbf8f66fe44fe1d27e8659da67b052cb564d 100644
--- a/indra/newview/llviewertexture.cpp
+++ b/indra/newview/llviewertexture.cpp
@@ -82,6 +82,7 @@ LLPointer<LLViewerFetchedTexture> LLViewerFetchedTexture::sSmokeImagep = NULL;
 LLPointer<LLViewerFetchedTexture> LLViewerFetchedTexture::sFlatNormalImagep = NULL;
 LLPointer<LLViewerFetchedTexture> LLViewerFetchedTexture::sDefaultIrradiancePBRp;
 LLPointer<LLViewerFetchedTexture> LLViewerFetchedTexture::sPixieSmallImagep = NULL;
+LLPointer<LLViewerFetchedTexture> LLViewerFetchedTexture::sPixieEffectImagep = NULL;
 // [SL:KB] - Patch: Render-TextureToggle (Catznip-4.0)
 LLPointer<LLViewerFetchedTexture> LLViewerFetchedTexture::sDefaultDiffuseImagep = NULL;
 // [/SL:KB]
@@ -461,6 +462,7 @@ void LLViewerTextureManager::cleanup()
 	LLViewerFetchedTexture::sFlatNormalImagep = NULL;
 	LLViewerFetchedTexture::sDefaultIrradiancePBRp = NULL;
 	LLViewerFetchedTexture::sPixieSmallImagep = NULL;
+	LLViewerFetchedTexture::sPixieEffectImagep = NULL;
 	LLViewerFetchedTexture::sDefaultDiffuseImagep = NULL;
 
 	LLViewerMediaTexture::cleanUpClass();	
diff --git a/indra/newview/llviewertexture.h b/indra/newview/llviewertexture.h
index 7622f9ad22a9df59b5f9d933f88eac1868fda3de..64977be82cac4995465139af13732e2d7aebd616 100644
--- a/indra/newview/llviewertexture.h
+++ b/indra/newview/llviewertexture.h
@@ -538,6 +538,7 @@ class LLViewerFetchedTexture : public LLViewerTexture
     static LLPointer<LLViewerFetchedTexture> sSmokeImagep; // Old "Default" translucent texture
     static LLViewerFetchedTexture* getSmokeImage();
 	static LLPointer<LLViewerFetchedTexture> sPixieSmallImagep; // Small pixmap for default particle tex
+	static LLPointer<LLViewerFetchedTexture> sPixieEffectImagep; // Small pixmap for default particle tex
 // [SL:KB] - Patch: Render-TextureToggle (Catznip-4.0)
 	static LLPointer<LLViewerFetchedTexture> sDefaultDiffuseImagep;
 // [/SL:KB]
diff --git a/indra/newview/llviewertexturelist.cpp b/indra/newview/llviewertexturelist.cpp
index 00b72a4e32a175f95891ee0bf4f915c24dd31d42..5a4fae1edcf09896d23528c8d3ab3ee265c13233 100644
--- a/indra/newview/llviewertexturelist.cpp
+++ b/indra/newview/llviewertexturelist.cpp
@@ -127,7 +127,10 @@ void LLViewerTextureList::doPreloadImages()
 	LLViewerFetchedTexture::sDefaultIrradiancePBRp = LLViewerTextureManager::getFetchedTextureFromFile("default_irradiance.png", FTT_LOCAL_FILE, MIPMAP_YES, LLViewerFetchedTexture::BOOST_UI);
 	
 	// Set the default particle image
-	LLViewerFetchedTexture::sPixieSmallImagep = LLViewerTextureManager::getFetchedTextureFromFile("PixieSmall.png", FTT_LOCAL_FILE, MIPMAP_YES, LLViewerFetchedTexture::BOOST_UI);
+	LLViewerFetchedTexture::sPixieSmallImagep = LLViewerTextureManager::getFetchedTextureFromFile("pixiesmall.j2c", FTT_LOCAL_FILE, MIPMAP_YES, LLViewerFetchedTexture::BOOST_UI);
+
+	// Set the default particle image
+	LLViewerFetchedTexture::sPixieEffectImagep = LLViewerTextureManager::getFetchedTextureFromFile("PixieSmall.png", FTT_LOCAL_FILE, MIPMAP_YES, LLViewerFetchedTexture::BOOST_UI);
 
 	image_list->initFromFile();