diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llappviewer.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llstartup.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewerassetstorage.cpp | 9 | ||||
| -rw-r--r-- | indra/newview/llviewerassetstorage.h | 4 | 
4 files changed, 15 insertions, 7 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 532391e590..2f9bbb1407 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3242,6 +3242,13 @@ bool LLAppViewer::initCache()  	else  	{  		LLVFile::initClass(); + +		//llinfos << "Static VFS listing" << llendl; +		//gStaticVFS->listFiles(); + +		//llinfos << "regular VFS listing" << llendl; +		//gVFS->listFiles(); +		  		return true;  	}  } diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 27b8ff0628..7ad7799515 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -564,7 +564,7 @@ bool idle_startup()  				gXferManager->setUseAckThrottling(TRUE);  				gXferManager->setAckThrottleBPS(xfer_throttle_bps);  			} -			gAssetStorage = new LLViewerAssetStorage(msg, gXferManager, gVFS); +			gAssetStorage = new LLViewerAssetStorage(msg, gXferManager, gVFS, gStaticVFS);  			F32 dropPercent = gSavedSettings.getF32("PacketDropPercentage"); diff --git a/indra/newview/llviewerassetstorage.cpp b/indra/newview/llviewerassetstorage.cpp index bb49804aff..c3a6b7111b 100644 --- a/indra/newview/llviewerassetstorage.cpp +++ b/indra/newview/llviewerassetstorage.cpp @@ -41,15 +41,16 @@  #include "llagent.h"  LLViewerAssetStorage::LLViewerAssetStorage(LLMessageSystem *msg, LLXferManager *xfer, -										   LLVFS *vfs, const LLHost &upstream_host) -		: LLAssetStorage(msg, xfer, vfs, upstream_host) +										   LLVFS *vfs, LLVFS *static_vfs,  +										   const LLHost &upstream_host) +		: LLAssetStorage(msg, xfer, vfs, static_vfs, upstream_host)  {  }  LLViewerAssetStorage::LLViewerAssetStorage(LLMessageSystem *msg, LLXferManager *xfer, -										   LLVFS *vfs) -		: LLAssetStorage(msg, xfer, vfs) +										   LLVFS *vfs, LLVFS *static_vfs) +		: LLAssetStorage(msg, xfer, vfs, static_vfs)  {  } diff --git a/indra/newview/llviewerassetstorage.h b/indra/newview/llviewerassetstorage.h index 512b590a1b..8e7ea3471d 100644 --- a/indra/newview/llviewerassetstorage.h +++ b/indra/newview/llviewerassetstorage.h @@ -42,10 +42,10 @@ class LLViewerAssetStorage : public LLAssetStorage  {  public:  	LLViewerAssetStorage(LLMessageSystem *msg, LLXferManager *xfer, -				   LLVFS *vfs, const LLHost &upstream_host); +				   LLVFS *vfs, LLVFS *static_vfs, const LLHost &upstream_host);  	LLViewerAssetStorage(LLMessageSystem *msg, LLXferManager *xfer, -				   LLVFS *vfs); +				   LLVFS *vfs, LLVFS *static_vfs);  	using LLAssetStorage::storeAssetData;  	virtual void storeAssetData(  | 
