diff options
author | wwylele <wwylele@gmail.com> | 2017-01-01 13:58:02 +0100 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2017-02-21 22:57:31 +0100 |
commit | ea1ea0224c04753402e0b6472080f0c5d90a7a46 (patch) | |
tree | d6823e52d913418d63ec3f0b7ed12eb763a98899 /src/core/hw/hw.cpp | |
parent | Merge pull request #2562 from yuriks/pica-refactor3 (diff) | |
download | yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.tar yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.tar.gz yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.tar.bz2 yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.tar.lz yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.tar.xz yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.tar.zst yuzu-ea1ea0224c04753402e0b6472080f0c5d90a7a46.zip |
Diffstat (limited to '')
-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"); |