diff options
author | bunnei <bunneidev@gmail.com> | 2017-02-25 06:12:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-25 06:12:33 +0100 |
commit | 892888ed9e7c683150493c7c17f567d3c569e62e (patch) | |
tree | fffbfb393fc1da4b6c69a9c0593d2fe8ef9a10a7 /src/core/hw/hw.cpp | |
parent | Merge pull request #2421 from Subv/timers (diff) | |
parent | externals: remove -march=native for crypto++ (diff) | |
download | yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.gz yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.bz2 yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.lz yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.xz yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.zst yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.zip |
Diffstat (limited to 'src/core/hw/hw.cpp')
-rw-r--r-- | src/core/hw/hw.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp index 9ff8825b2..8499f2ce6 100644 --- a/src/core/hw/hw.cpp +++ b/src/core/hw/hw.cpp @@ -4,6 +4,7 @@ #include "common/common_types.h" #include "common/logging/log.h" +#include "core/hw/aes/key.h" #include "core/hw/gpu.h" #include "core/hw/hw.h" #include "core/hw/lcd.h" @@ -85,6 +86,7 @@ void Update() {} /// Initialize hardware void Init() { + AES::InitKeys(); GPU::Init(); LCD::Init(); LOG_DEBUG(HW, "initialized OK"); |