pl_u: Use OSS system archives if real archives don't exist

This commit is contained in:
Zach Hilman
2019-09-21 21:50:36 -04:00
parent 920742d418
commit 40284c6868
2 changed files with 48 additions and 112 deletions

View File

@ -23,8 +23,7 @@ VirtualFile PackBFTTF(const std::array<u8, Size>& data, const std::string& name)
std::vector<u8> bfttf(Size + sizeof(u64));
u64 offset = 0;
Service::NS::EncryptSharedFont(vec, bfttf, offset);
Service::NS::EncryptSharedFont(vec, bfttf);
return std::make_shared<VectorVfsFile>(std::move(bfttf), name);
}