Browse Source
Merge pull request #5874 from Morph1984/create-keys-dir
key_manager: Create the keys directory if it does not exist
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
src/core/crypto/key_manager.cpp
|
|
|
@ -568,6 +568,11 @@ KeyManager::KeyManager() { |
|
|
|
// Initialize keys
|
|
|
|
const std::string hactool_keys_dir = Common::FS::GetHactoolConfigurationPath(); |
|
|
|
const std::string yuzu_keys_dir = Common::FS::GetUserPath(Common::FS::UserPath::KeysDir); |
|
|
|
|
|
|
|
if (!Common::FS::Exists(yuzu_keys_dir)) { |
|
|
|
Common::FS::CreateDir(yuzu_keys_dir); |
|
|
|
} |
|
|
|
|
|
|
|
if (Settings::values.use_dev_keys) { |
|
|
|
dev_mode = true; |
|
|
|
AttemptLoadKeyFile(yuzu_keys_dir, hactool_keys_dir, "dev.keys", false); |
|
|
|
|