Handle DX10 case of ba2 format

This commit is contained in:
Cédric Mocquillon 2023-03-02 16:51:04 +01:00
parent c1fbe90953
commit 974799c011
7 changed files with 786 additions and 1 deletions

View file

@ -52,6 +52,7 @@ std::unique_ptr<VFS::Archive> makeBsaArchive(const std::filesystem::path& path)
return std::make_unique<VFS::BsaArchive>(path);
case Bsa::BSAVER_COMPRESSED:
case Bsa::BSAVER_BA2_GNRL:
case Bsa::BSAVER_BA2_DX10:
return std::make_unique<VFS::CompressedBsaArchive>(path);
}