diff options
| author | bunnei <bunneidev@gmail.com> | 2020-07-29 14:20:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-29 14:20:40 -0700 |
| commit | b8a7b530f8e8e345f40ccd38afa399f4d7f5d578 (patch) | |
| tree | 9c7701b031434318ed66114c711a08576a26b4b4 /src/core/file_sys/registered_cache.h | |
| parent | b205b12e75961d70b8c92dff560cf6e6f9f869a7 (diff) | |
| parent | e59d17167d72a96068b7fd929e11a1cf26ecb809 (diff) | |
Merge pull request #4372 from Morph1984/remove_context_menu
game_list: Add "Remove" context menu
Diffstat (limited to 'src/core/file_sys/registered_cache.h')
| -rw-r--r-- | src/core/file_sys/registered_cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/file_sys/registered_cache.h b/src/core/file_sys/registered_cache.h index 29cf0d40c..ec1d54f27 100644 --- a/src/core/file_sys/registered_cache.h +++ b/src/core/file_sys/registered_cache.h @@ -155,9 +155,6 @@ public: std::optional<TitleType> title_type = {}, std::optional<ContentRecordType> record_type = {}, std::optional<u64> title_id = {}) const override; - // Removes an existing entry based on title id - bool RemoveExistingEntry(u64 title_id); - // Raw copies all the ncas from the xci/nsp to the csache. Does some quick checks to make sure // there is a meta NCA and all of them are accessible. InstallResult InstallEntry(const XCI& xci, bool overwrite_if_exists = false, @@ -172,6 +169,9 @@ public: InstallResult InstallEntry(const NCA& nca, TitleType type, bool overwrite_if_exists = false, const VfsCopyFunction& copy = &VfsRawCopy); + // Removes an existing entry based on title id + bool RemoveExistingEntry(u64 title_id) const; + private: template <typename T> void IterateAllMetadata(std::vector<T>& out, |
