mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Handle DX10 case of ba2 format
This commit is contained in:
parent
c1fbe90953
commit
974799c011
7 changed files with 786 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
#include <boost/program_options.hpp>
|
||||
|
||||
#include <components/bsa/ba2dx10file.hpp>
|
||||
#include <components/bsa/ba2gnrlfile.hpp>
|
||||
#include <components/bsa/compressedbsafile.hpp>
|
||||
#include <components/files/configurationmanager.hpp>
|
||||
|
@ -327,6 +328,8 @@ int main(int argc, char** argv)
|
|||
return call<Bsa::CompressedBSAFile>(info);
|
||||
case Bsa::BSAVER_BA2_GNRL:
|
||||
return call<Bsa::BA2GNRLFile>(info);
|
||||
case Bsa::BSAVER_BA2_DX10:
|
||||
return call<Bsa::BA2DX10File>(info);
|
||||
case Bsa::BSAVER_UNCOMPRESSED:
|
||||
return call<Bsa::BSAFile>(info);
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue