diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-23 11:25:43 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-23 11:25:45 -0400 |
commit | 67a8e73101a98cc6e9be36d12b0ffad21c5a554d (patch) | |
tree | a67bc78ac8ae0d9c40a94c20f4b1581242e3852a | |
parent | f83c6e1e0c14c587f2df63aa95eb97b9df7ea742 (diff) |
registered_cache: Make use of ends_with for string suffix checking
Simplifies code.
-rw-r--r-- | src/core/file_sys/registered_cache.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/file_sys/registered_cache.cpp b/src/core/file_sys/registered_cache.cpp index a97f079c0..da01002d5 100644 --- a/src/core/file_sys/registered_cache.cpp +++ b/src/core/file_sys/registered_cache.cpp @@ -257,8 +257,7 @@ std::vector<NcaID> PlaceholderCache::List() const { for (const auto& sdir : dir->GetSubdirectories()) { for (const auto& file : sdir->GetFiles()) { const auto name = file->GetName(); - if (name.length() == 36 && name[32] == '.' && name[33] == 'n' && name[34] == 'c' && - name[35] == 'a') { + if (name.length() == 36 && name.ends_with(".nca")) { out.push_back(Common::HexStringToArray<0x10>(name.substr(0, 32))); } } |