From e6c97edb1c41a5bca22aeaa8befe226ba1c511bb Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 30 Jul 2024 14:32:42 +0300 Subject: [PATCH] AES: Remove unused seedsLoaded variable --- include/crypto/aes_engine.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/crypto/aes_engine.hpp b/include/crypto/aes_engine.hpp index f8a2d7e4..c96b36d3 100644 --- a/include/crypto/aes_engine.hpp +++ b/include/crypto/aes_engine.hpp @@ -102,7 +102,6 @@ namespace Crypto { std::vector seeds; IOFile seedDatabase; - bool seedsLoaded = false; constexpr void updateNormalKey(usize slotId) { if (m_generator.has_value() && hasKeyX(slotId) && hasKeyY(slotId)) { @@ -176,4 +175,4 @@ namespace Crypto { std::optional getSeedFromDB(u64 titleID); }; -} // namespace Crypto \ No newline at end of file +} // namespace Crypto