diff options
| author | 2018-10-15 17:48:13 -0400 | |
|---|---|---|
| committer | 2018-10-15 17:48:13 -0400 | |
| commit | 76654113176b1f8759504080a6ccdfd422cd6777 (patch) | |
| tree | db5a30c8ca845d08ee680cb1c1969f9a959dc37f /src/core | |
| parent | Merge pull request #1503 from ReinUsesLisp/misc-vc (diff) | |
| parent | crypto: Various crypto fixes for quickstart guide (diff) | |
| download | yuzu-76654113176b1f8759504080a6ccdfd422cd6777.tar.gz yuzu-76654113176b1f8759504080a6ccdfd422cd6777.tar.xz yuzu-76654113176b1f8759504080a6ccdfd422cd6777.zip | |
Merge pull request #1500 from DarkLordZach/key-derivation-6.0.0
crypto: Various crypto fixes for quickstart guide
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/crypto/partition_data_manager.cpp | 4 |
1 files changed, 2 insertions, 2 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, | |||
| 303 | 303 | ||
| 304 | PartitionDataManager::PartitionDataManager(const FileSys::VirtualDir& sysdata_dir) | 304 | PartitionDataManager::PartitionDataManager(const FileSys::VirtualDir& sysdata_dir) |
| 305 | : boot0(FindFileInDirWithNames(sysdata_dir, "BOOT0")), | 305 | : boot0(FindFileInDirWithNames(sysdata_dir, "BOOT0")), |
| 306 | fuses(FindFileInDirWithNames(sysdata_dir, "fuse")), | 306 | fuses(FindFileInDirWithNames(sysdata_dir, "fuses")), |
| 307 | kfuses(FindFileInDirWithNames(sysdata_dir, "kfuse")), | 307 | kfuses(FindFileInDirWithNames(sysdata_dir, "kfuses")), |
| 308 | package2({ | 308 | package2({ |
| 309 | FindFileInDirWithNames(sysdata_dir, "BCPKG2-1-Normal-Main"), | 309 | FindFileInDirWithNames(sysdata_dir, "BCPKG2-1-Normal-Main"), |
| 310 | FindFileInDirWithNames(sysdata_dir, "BCPKG2-2-Normal-Sub"), | 310 | FindFileInDirWithNames(sysdata_dir, "BCPKG2-2-Normal-Sub"), |