summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorBrad Smith <brad@comstyle.com>2023-05-22 23:34:19 -0400
committerBrad Smith <brad@comstyle.com>2023-05-22 23:34:19 -0400
commit49afa23f9532edcaeff1ab6370eaf1245eb10ac1 (patch)
tree1967cc460e6c73ec0d5ad3e42b55cd2ba641f7e9 /Source/Core
parent68c3b1fb7df3f6f20edf612226f683ce6e3eee8c (diff)
Silence AES warning
This warning came about after 46ad8b9d68b7eff720a6f33e6029ddd36ab8edaa In file included from /home/ports/pobj/dolphin-5.0.0.20230429/dolphin-5.0.0.20230429/Source/Core/Core/IOS/WFS/WFSI.cpp:4: /home/ports/pobj/dolphin-5.0.0.20230429/dolphin-5.0.0.20230429/Source/Core/Core/IOS/WFS/WFSI.h:54:6: warning: private field 'm_aes_key' is not used [-Wunused-private-field] u8 m_aes_key[0x10] = {}; ^
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/IOS/WFS/WFSI.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Core/Core/IOS/WFS/WFSI.h b/Source/Core/Core/IOS/WFS/WFSI.h
index 3abfa5bd9b..4ab92df39e 100644
--- a/Source/Core/Core/IOS/WFS/WFSI.h
+++ b/Source/Core/Core/IOS/WFS/WFSI.h
@@ -51,7 +51,6 @@ private:
std::string m_device_name;
std::unique_ptr<Common::AES::Context> m_aes_ctx{};
- u8 m_aes_key[0x10] = {};
u8 m_aes_iv[0x10] = {};
ES::TMDReader m_tmd;