From e311e603a8e7f855ce09f68cc45f08c35571144c Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Mon, 14 Apr 2025 01:55:04 -0400 Subject: [SharedCache] Skip processing .atlas files The atlas files include section name info on images, its not helpful for us and skipping it altogether will remove an unneeded error related to parsing this other format --- view/sharedcache/core/SharedCacheBuilder.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'view/sharedcache/core/SharedCacheBuilder.cpp') diff --git a/view/sharedcache/core/SharedCacheBuilder.cpp b/view/sharedcache/core/SharedCacheBuilder.cpp index 3b370662..11fadefd 100644 --- a/view/sharedcache/core/SharedCacheBuilder.cpp +++ b/view/sharedcache/core/SharedCacheBuilder.cpp @@ -31,6 +31,9 @@ bool SharedCacheBuilder::AddFile( // Skip map files, they contain some nice information... we don't use. if (fileName.find(".map") != std::string::npos) return false; + // Skip atlas files, they contain some nice information... we don't use. + if (fileName.find(".atlas") != std::string::npos) + return false; // Skip bndb files! if (fileName.find(".bndb") != std::string::npos) return false; -- cgit v1.3.1