diff options
author | Zach Hilman <DarkLordZach@users.noreply.github.com> | 2018-07-30 03:00:50 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-01 06:16:54 +0200 |
commit | 9d59b96ef907e8be2560107485f7616a2234c4a8 (patch) | |
tree | 1176f8c2cdf9dcf9ef68c5308a138800547d2d99 | |
parent | Use ErrorEncrypted where applicable and fix no keys crash (diff) | |
download | yuzu-9d59b96ef907e8be2560107485f7616a2234c4a8.tar yuzu-9d59b96ef907e8be2560107485f7616a2234c4a8.tar.gz yuzu-9d59b96ef907e8be2560107485f7616a2234c4a8.tar.bz2 yuzu-9d59b96ef907e8be2560107485f7616a2234c4a8.tar.lz yuzu-9d59b96ef907e8be2560107485f7616a2234c4a8.tar.xz yuzu-9d59b96ef907e8be2560107485f7616a2234c4a8.tar.zst yuzu-9d59b96ef907e8be2560107485f7616a2234c4a8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/crypto/key_manager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/crypto/key_manager.h b/src/core/crypto/key_manager.h index 28a560a3f..c09a6197e 100644 --- a/src/core/crypto/key_manager.h +++ b/src/core/crypto/key_manager.h @@ -111,7 +111,7 @@ private: void AttemptLoadKeyFile(std::string_view dir1, std::string_view dir2, std::string_view filename, bool title); - const static std::unordered_map<std::string, KeyIndex<S128KeyType>> s128_file_id; - const static std::unordered_map<std::string, KeyIndex<S256KeyType>> s256_file_id; + static const std::unordered_map<std::string, KeyIndex<S128KeyType>> s128_file_id; + static const std::unordered_map<std::string, KeyIndex<S256KeyType>> s256_file_id; }; } // namespace Core::Crypto |