Browse Source
Merge pull request #1187 from lioncash/shadow
registered_cache: Get rid of variable shadowing in ProcessFiles()
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
src/core/file_sys/registered_cache.cpp
|
|
|
@ -216,11 +216,11 @@ void RegisteredCache::ProcessFiles(const std::vector<NcaID>& ids) { |
|
|
|
|
|
|
|
const auto section0 = nca->GetSubdirectories()[0]; |
|
|
|
|
|
|
|
for (const auto& file : section0->GetFiles()) { |
|
|
|
if (file->GetExtension() != "cnmt") |
|
|
|
for (const auto& section0_file : section0->GetFiles()) { |
|
|
|
if (section0_file->GetExtension() != "cnmt") |
|
|
|
continue; |
|
|
|
|
|
|
|
meta.insert_or_assign(nca->GetTitleId(), CNMT(file)); |
|
|
|
meta.insert_or_assign(nca->GetTitleId(), CNMT(section0_file)); |
|
|
|
meta_id.insert_or_assign(nca->GetTitleId(), id); |
|
|
|
break; |
|
|
|
} |
|
|
|
|