mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 20:19:13 +12:00
Address comments
This commit is contained in:
parent
ef5329a0d4
commit
0494ca0064
2 changed files with 4 additions and 4 deletions
|
@ -72,9 +72,9 @@ namespace Crypto {
|
|||
}
|
||||
|
||||
struct AESKeySlot {
|
||||
std::optional<AESKey> keyX;
|
||||
std::optional<AESKey> keyY;
|
||||
std::optional<AESKey> normalKey;
|
||||
std::optional<AESKey> keyX{std::nullopt};
|
||||
std::optional<AESKey> keyY{std::nullopt};
|
||||
std::optional<AESKey> normalKey{std::nullopt};
|
||||
};
|
||||
|
||||
enum KeySlotId : std::size_t {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue