diff options
author | Lioncash <mathew1800@gmail.com> | 2020-07-01 00:28:49 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-07-01 00:28:50 -0400 |
commit | fb13f053bb6ef304bc7656b521727c87eff697f1 (patch) | |
tree | a73d08ac25a77b294ec1cd1b9e15d84a26761daa /src/yuzu/main.cpp | |
parent | c91710a82fc99b420dfab103fe89bdd44ba004cb (diff) |
key_manager: Correct casing of instance()
Our codebase uppercases member function names.
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index f586950e74..fb299a39b8 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2226,7 +2226,7 @@ void GMainWindow::OnReinitializeKeys(ReinitializeKeyBehavior behavior) { "title.keys_autogenerated"); } - Core::Crypto::KeyManager& keys = Core::Crypto::KeyManager::instance(); + Core::Crypto::KeyManager& keys = Core::Crypto::KeyManager::Instance(); if (keys.BaseDeriveNecessary()) { Core::Crypto::PartitionDataManager pdm{vfs->OpenDirectory( FileUtil::GetUserPath(FileUtil::UserPath::SysDataDir), FileSys::Mode::Read)}; |