mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 12:57:49 +00:00
partition_data_manager: Take package2_keys by const reference
These are only ever read from, so we don't need to make a copy of all the keys here.
This commit is contained in:
parent
461cd4b81c
commit
283f111f7d
2 changed files with 3 additions and 2 deletions
|
@ -60,7 +60,8 @@ public:
|
|||
// Package2
|
||||
bool HasPackage2(Package2Type type = Package2Type::NormalMain) const;
|
||||
FileSys::VirtualFile GetPackage2Raw(Package2Type type = Package2Type::NormalMain) const;
|
||||
void DecryptPackage2(std::array<std::array<u8, 16>, 0x20> package2, Package2Type type);
|
||||
void DecryptPackage2(const std::array<std::array<u8, 16>, 0x20>& package2_keys,
|
||||
Package2Type type);
|
||||
const std::vector<u8>& GetPackage2FSDecompressed(
|
||||
Package2Type type = Package2Type::NormalMain) const;
|
||||
std::array<u8, 0x10> GetKeyAreaKeyApplicationSource(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue