diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-15 23:48:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-15 23:48:13 +0200 |
commit | 76654113176b1f8759504080a6ccdfd422cd6777 (patch) | |
tree | db5a30c8ca845d08ee680cb1c1969f9a959dc37f | |
parent | Merge pull request #1503 from ReinUsesLisp/misc-vc (diff) | |
parent | crypto: Various crypto fixes for quickstart guide (diff) | |
download | yuzu-76654113176b1f8759504080a6ccdfd422cd6777.tar yuzu-76654113176b1f8759504080a6ccdfd422cd6777.tar.gz yuzu-76654113176b1f8759504080a6ccdfd422cd6777.tar.bz2 yuzu-76654113176b1f8759504080a6ccdfd422cd6777.tar.lz yuzu-76654113176b1f8759504080a6ccdfd422cd6777.tar.xz yuzu-76654113176b1f8759504080a6ccdfd422cd6777.tar.zst yuzu-76654113176b1f8759504080a6ccdfd422cd6777.zip |
-rw-r--r-- | src/core/crypto/partition_data_manager.cpp | 4 | ||||
-rw-r--r-- | src/yuzu/main.cpp | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/core/crypto/partition_data_manager.cpp b/src/core/crypto/partition_data_manager.cpp index ed5e2b145..25cee1f3a 100644 --- a/src/core/crypto/partition_data_manager.cpp +++ b/src/core/crypto/partition_data_manager.cpp @@ -303,8 +303,8 @@ FileSys::VirtualFile FindFileInDirWithNames(const FileSys::VirtualDir& dir, PartitionDataManager::PartitionDataManager(const FileSys::VirtualDir& sysdata_dir) : boot0(FindFileInDirWithNames(sysdata_dir, "BOOT0")), - fuses(FindFileInDirWithNames(sysdata_dir, "fuse")), - kfuses(FindFileInDirWithNames(sysdata_dir, "kfuse")), + fuses(FindFileInDirWithNames(sysdata_dir, "fuses")), + kfuses(FindFileInDirWithNames(sysdata_dir, "kfuses")), package2({ FindFileInDirWithNames(sysdata_dir, "BCPKG2-1-Normal-Main"), FindFileInDirWithNames(sysdata_dir, "BCPKG2-2-Normal-Sub"), diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index cc92ea5b8..d1a068e68 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1428,8 +1428,12 @@ void GMainWindow::OnReinitializeKeys(ReinitializeKeyBehavior behavior) { QMessageBox::warning( this, tr("Warning Missing Derivation Components"), tr("The following are missing from your configuration that may hinder key " - "derivation. It will be attempted but may not complete.\n\n") + - errors); + "derivation. It will be attempted but may not complete.<br><br>") + + errors + + tr("<br><br>You can get all of these and dump all of your games easily by " + "following <a href='https://yuzu-emu.org/help/quickstart/quickstart/'>the " + "quickstart guide</a>. Alternatively, you can use another method of dumping " + "to obtain all of your keys.")); } QProgressDialog prog; |